diff options
| author | Chris Patti <feoh@feoh.org> | 2024-03-12 18:09:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-12 18:09:47 -0400 |
| commit | 4fd15622beaec6262bb2de944996c06003fec712 (patch) | |
| tree | 93b3ec9aab481254693f23fc72a8b2bfbdc4f77b /nvim/init.lua | |
| parent | 9d84210908011311e6e996c90d06381fefd2734a (diff) | |
| download | dots-4fd15622beaec6262bb2de944996c06003fec712.tar.gz | |
Revert "Use `cmp-nvim-lua` as `nvim-cmp` source for neovim Lua API (#696)" (#755)
This reverts commit 9068825bc784d1478d5484ed4f7d761d4ba716df.
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index fe25648..04cc6b7 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -640,9 +640,6 @@ require('lazy').setup({ -- into multiple repos for maintenance purposes. 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-path', - -- nvim-cmp source for neovim Lua API - -- so that things like vim.keymap.set, etc. are autocompleted - 'hrsh7th/cmp-nvim-lua', -- If you want to add a bunch of pre-configured snippets, -- you can use this plugin to help you. It even has snippets @@ -704,7 +701,6 @@ require('lazy').setup({ end, { 'i', 's' }), }, sources = { - { name = 'nvim_lua' }, { name = 'nvim_lsp' }, { name = 'luasnip' }, { name = 'path' }, |