aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/nvim-cmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/nvim-cmp.lua')
-rw-r--r--nvim/lua/plugins/nvim-cmp.lua8
1 files changed, 1 insertions, 7 deletions
diff --git a/nvim/lua/plugins/nvim-cmp.lua b/nvim/lua/plugins/nvim-cmp.lua
index a3b32f7..1a4a66c 100644
--- a/nvim/lua/plugins/nvim-cmp.lua
+++ b/nvim/lua/plugins/nvim-cmp.lua
@@ -95,7 +95,6 @@ local cmp_pandoc = {
}
local cmp_lsp = {
- -- TODO: lazy load on lsp load
'hrsh7th/cmp-nvim-lsp',
event = 'LspAttach',
dependencies = {
@@ -173,7 +172,6 @@ local cmp = {
{ name = 'luasnip' },
{ name = 'nvim_lsp' },
{ name = 'nvim_lua' },
- { name = 'luansip' },
{ name = 'buffer' },
{ name = 'path' }
}
@@ -181,6 +179,7 @@ local cmp = {
cmp.setup.filetype({ "sql" }, {
sources = {
{ name = 'vim-dadbod-completion' },
+ { name = 'nvim_lsp' },
{ name = 'buffer' }
}
})
@@ -197,9 +196,4 @@ return {
cmp_buffer,
-- cmp_pandoc,
cmp,
-
- -- {
- -- 'kdheepak/cmp-latex-symbols',
- -- dependencies = { 'hrsh7th/nvim-cmp' }
- -- },
}