diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl index 8500b4a..982525d 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl @@ -13,9 +13,12 @@ (def- cmp-srcs [{:name :nvim_lsp} + {:name :nvim_lua} {:name :vsnip} {:name :conjure} - {:name :buffer}]) + {:name :buffer} + {:name :orgmode} + {:name :emoji}]) ;; Setup cmp with desired settings (let [cmp (require :cmp)] diff --git a/nvim/.config/nvim/fnl/dotfiles/plugins.fnl b/nvim/.config/nvim/fnl/dotfiles/plugins.fnl index 7aebbdb..f4bcd8f 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugins.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugins.fnl @@ -37,6 +37,7 @@ :hrsh7th/nvim-cmp {:requires [:hrsh7th/cmp-buffer :hrsh7th/cmp-emoji :hrsh7th/cmp-nvim-lsp + :hrsh7th/cmp-nvim-lua :hrsh7th/cmp-vsnip :hrsh7th/vim-vsnip-integ :PaterJason/cmp-conjure]