From c304417d6c94bcf0709490da562dafe3952fffca Mon Sep 17 00:00:00 2001 From: Proctor Date: Fri, 23 Sep 2022 10:14:44 -0500 Subject: [PATCH] Update nvim-cmp sources --- nvim/.config/nvim/fnl/dotfiles/plugin/cmp.fnl | 5 ++++- nvim/.config/nvim/fnl/dotfiles/plugins.fnl | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) 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]