aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/nvim-cmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/nvim-cmp.lua')
-rw-r--r--nvim/lua/plugins/nvim-cmp.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/nvim/lua/plugins/nvim-cmp.lua b/nvim/lua/plugins/nvim-cmp.lua
index d997a2c..800391d 100644
--- a/nvim/lua/plugins/nvim-cmp.lua
+++ b/nvim/lua/plugins/nvim-cmp.lua
@@ -35,13 +35,15 @@ local config = function()
},
sources = cmp.config.sources(
{
+ { name = "lazydev", group_index = 0 }
+ }, {
+ { name = "neorg" }
+ }, {
{ name = "nvim_lsp" },
}, {
{ name = "buffer" },
}, {
{ name = "path" },
- }, {
- { name = "lazydev", group_index = 0 }
}
)
})