Added completion and some key mappings

This commit is contained in:
2021-09-09 00:13:06 +02:00
parent f4fe34a7aa
commit 1d0a458c8f
4 changed files with 222 additions and 10 deletions

View File

@@ -13,4 +13,19 @@ return require('packer').startup(function()
use {'nvim-lua/plenary.nvim'}
use {'lewis6991/gitsigns.nvim'}
use {'kosayoda/nvim-lightbulb'}
use {
'kyazdani42/nvim-tree.lua',
requires = 'kyazdani42/nvim-web-devicons'
}
use {'terrortylor/nvim-comment'}
use {
'hrsh7th/nvim-cmp',
requires = {
'hrsh7th/cmp-buffer', 'hrsh7th/cmp-nvim-lsp',
'quangnguyen30192/cmp-nvim-ultisnips', 'hrsh7th/cmp-nvim-lua',
'octaltree/cmp-look', 'hrsh7th/cmp-path', 'hrsh7th/cmp-calc',
'f3fora/cmp-spell', 'hrsh7th/cmp-emoji'
}
}
use {'onsails/lspkind-nvim'}
end)