mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
19 lines
367 B
Lua
19 lines
367 B
Lua
|
local neorg = require('neorg')
|
||
|
local cmp = require('cmp')
|
||
|
|
||
|
local cmp_config = cmp.get_config()
|
||
|
table.insert(cmp_config.sources, { name = "neorg" })
|
||
|
cmp.setup(cmp_config)
|
||
|
|
||
|
require('neorg').setup {
|
||
|
load = {
|
||
|
["core.defaults"] = {},
|
||
|
["core.norg.concealer"] = {},
|
||
|
["core.norg.completion"] = {
|
||
|
config = {
|
||
|
engine = "nvim-cmp"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|