Mercurial > dotfiles
changeset 441:8b5c7359dd86
Add vsnip and path cmp plugins
author | zegervdv <zegervdv@me.com> |
---|---|
date | Fri, 27 Aug 2021 17:37:11 +0200 |
parents | 6503de68af7b |
children | e830ae093010 |
files | dot_config/nvim/init.lua |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/dot_config/nvim/init.lua Fri Aug 27 17:36:25 2021 +0200 +++ b/dot_config/nvim/init.lua Fri Aug 27 17:37:11 2021 +0200 @@ -202,7 +202,7 @@ use { 'neovim/nvim-lspconfig' } use { 'hrsh7th/nvim-cmp', - requires = { 'hrsh7th/cmp-buffer', 'hrsh7th/cmp-nvim-lsp' }, + requires = { 'hrsh7th/cmp-buffer', 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-vsnip', 'hrsh7th/cmp-path' }, config = function() local cmp = require 'cmp' cmp.setup { @@ -221,6 +221,8 @@ sources = { { name = 'buffer' }, { name = 'nvim_lsp' }, + { name = 'vsnip' }, + { name = 'path' }, }, } end,