nvim: cmp now completes in the cmdline

This commit is contained in:
PowerUser64 2021-11-25 05:16:30 -08:00
parent 89ef1fc30a
commit 1479f48e25
2 changed files with 25 additions and 1 deletions

View file

@ -49,7 +49,7 @@ return require('packer').startup({function()
}
use { -- Default LSP configs
'neovim/nvim-lspconfig',
after = 'nvim-lspinstall',
after = {'nvim-lspinstall',},
config = function()
require('blake.lsp').lspconfig()
end
@ -63,9 +63,11 @@ return require('packer').startup({function()
'hrsh7th/cmp-path',
'hrsh7th/cmp-nvim-lua',
'hrsh7th/cmp-nvim-lsp',
'ray-x/cmp-treesitter',
'hrsh7th/cmp-calc',
'f3fora/cmp-spell',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-cmdline',
'hrsh7th/cmp-emoji',
}
}