Files
nvim/lua/plugins/util.lua
T
2023-02-16 01:39:44 -05:00

34 lines
959 B
Lua

return {
{
'nvim-neorg/neorg',
tag = '0.0.12',
config = function()
require('neorg').setup {
load = {
['core.defaults'] = {},
['core.norg.concealer'] = {},
['core.norg.completion'] = {
config = {
engine = 'nvim-cmp'
}
},
['core.export'] = {},
}
}
end,
dependencies = 'nvim-lua/plenary.nvim'
},
{
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
end,
},
}