summaryrefslogtreecommitdiffstats
path: root/lua/core/plugins.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-07-06 12:30:40 -0400
committerSquibid <me@zacharyscheiman.com>2023-07-06 12:30:40 -0400
commit1b5f19283295a524be498152e56b1324a240e8ac (patch)
tree20baf5cd60320dd2bb43a7f55945f261d30c125b /lua/core/plugins.lua
parent72fbdb3be79f235540a5403fc88d5f45d53b1af6 (diff)
downloadnvim-1b5f19283295a524be498152e56b1324a240e8ac.tar.gz
nvim-1b5f19283295a524be498152e56b1324a240e8ac.tar.bz2
nvim-1b5f19283295a524be498152e56b1324a240e8ac.zip
highlights for cmp and label cmp plugins
Diffstat (limited to '')
-rw-r--r--lua/core/plugins.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua
index 741c745..ffe2941 100644
--- a/lua/core/plugins.lua
+++ b/lua/core/plugins.lua
@@ -73,14 +73,14 @@ require 'dep' {
-- cmp ----------------------------------------------------------------------
{ 'hrsh7th/nvim-cmp',
deps = {
- 'hrsh7th/cmp-buffer',
- 'FelipeLema/cmp-async-path',
- 'hrsh7th/cmp-calc',
- 'saadparwaiz1/cmp_luasnip',
- 'hrsh7th/cmp-nvim-lua',
- 'hrsh7th/cmp-nvim-lsp',
- 'lukas-reineke/cmp-under-comparator',
- 'onsails/lspkind.nvim',
+ 'lukas-reineke/cmp-under-comparator', -- better results
+ 'hrsh7th/cmp-buffer', -- buffers
+ 'FelipeLema/cmp-async-path', -- path
+ 'hrsh7th/cmp-calc', -- calculator
+ 'saadparwaiz1/cmp_luasnip', -- snippets
+ 'hrsh7th/cmp-nvim-lsp', -- lsp
+ 'uga-rosa/cmp-dictionary', -- dictionary
+ 'hrsh7th/cmp-nvim-lua', -- nvim lua api
},
},