diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-12-25 02:22:45 -0500 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-12-25 02:22:45 -0500 |
| commit | 7bef410c68cfbe09208467c07fe8676bea8db3b5 (patch) | |
| tree | 9f767bd514f6fc7ef8ca73c1195e3bd26eedf3ae /nvim/lua/plugins/nvim-cmp.lua | |
| parent | 77baacf35a95598abc648fa6fe7305828232b606 (diff) | |
Tidy plugins
Diffstat (limited to 'nvim/lua/plugins/nvim-cmp.lua')
| -rw-r--r-- | nvim/lua/plugins/nvim-cmp.lua | 8 |
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' } - -- }, } |
