summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-05-29 22:05:34 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-05-29 22:05:34 -0400
commitf64dc028e57cc3cb0c79d73743ea851b656e0bfb (patch)
treed02f37d92c1373cbd1be0c9eeff799d89959c8d0 /lua
parent09d5aeabb4eaafb81e7aacffc36fa2f812439c3d (diff)
Add orgmode to cmp
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/cmp.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua
index c6f2d40..3a4be2a 100644
--- a/lua/plugins/cmp.lua
+++ b/lua/plugins/cmp.lua
@@ -29,7 +29,8 @@ return {
}),
sources = cmp.config.sources({
{ name = 'nvim_lsp' },
- { name = 'luasnip' },
+ { name = 'luasnip' },
+ { name = 'orgmode' },
{ name = 'buffer' },
{ name = 'path' }
})