summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/nvim/lua/plugins/cmp.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins/cmp.lua b/.config/nvim/lua/plugins/cmp.lua
index 81cd6cd..2cd540c 100644
--- a/.config/nvim/lua/plugins/cmp.lua
+++ b/.config/nvim/lua/plugins/cmp.lua
@@ -3,11 +3,12 @@ return {
3 "hrsh7th/nvim-cmp", 3 "hrsh7th/nvim-cmp",
4 dependencies = { 4 dependencies = {
5 "hrsh7th/cmp-nvim-lsp", 5 "hrsh7th/cmp-nvim-lsp",
6 "hrsh7th/cmp-nvim-lsp-signature-help",
6 "hrsh7th/cmp-nvim-lua", 7 "hrsh7th/cmp-nvim-lua",
7 "hrsh7th/cmp-buffer", 8 "hrsh7th/cmp-buffer",
8 "hrsh7th/cmp-path", 9 "hrsh7th/cmp-path",
9 "hrsh7th/cmp-omni", 10 "hrsh7th/cmp-omni",
10 "hrsh7th/cmp-nvim-lsp-signature-help", 11 "micangl/cmp-vimtex",
11 "L3MON4D3/LuaSnip", 12 "L3MON4D3/LuaSnip",
12 "saadparwaiz1/cmp_luasnip", 13 "saadparwaiz1/cmp_luasnip",
13 }, 14 },
@@ -119,10 +120,12 @@ return {
119 }, 120 },
120 sources = { 121 sources = {
121 { name = "nvim_lsp" }, 122 { name = "nvim_lsp" },
122 { name = "nvim_lsp_signature_help" }, 123 { name = "nvim_lua" },
123 { name = "luasnip" },
124 { name = "buffer" }, 124 { name = "buffer" },
125 { name = "path" }, 125 { name = "path" },
126 { name = "vimtex" },
127 { name = "nvim_lsp_signature_help" },
128 { name = "luasnip" },
126 }, 129 },
127 }) 130 })
128 131