diff options
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/pack.fnl | 3 | ||||
-rw-r--r-- | fnl/nvrc/packs/cmp.fnl | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index 59f3e7a..bd7d0ae 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -47,8 +47,7 @@ (pack! :hrsh7th/nvim-cmp {:req :cmp :event [:InsertEnter :CmdlineEnter] :dependencies [(pack :lukas-reineke/cmp-under-comparator) - (pack :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp}) - (pack :hrsh7th/cmp-nvim-lsp-signature-help)]}) + (pack :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp})]}) (pack! :stevearc/conform.nvim {:req :conform :cmd [:ConformInfo :ConformFormat] :keys ["gq"]}) (pack! :numToStr/Comment.nvim {:init :Comment :lazy true}) (pack! :ibhagwan/fzf-lua {:req :fzf :lazy true}) diff --git a/fnl/nvrc/packs/cmp.fnl b/fnl/nvrc/packs/cmp.fnl index aeb514f..5ca7c1c 100644 --- a/fnl/nvrc/packs/cmp.fnl +++ b/fnl/nvrc/packs/cmp.fnl @@ -66,8 +66,7 @@ (if (visible) (select_next_item) (vim.snippet.active {:direction -1}) (vim.snippet.jump -1) (fallback)))})} - :sources [{:name :nvim_lsp} - {:name :nvim_lsp_signature_help}] + :sources [{:name :nvim_lsp}] :sorting {:comparators [compare.offset compare.exact clangd-score |