Please work

This commit is contained in:
Bryan Ramos 2023-04-19 16:36:13 -04:00
parent 21a6f28e52
commit 16d8ddf6a8
2 changed files with 29 additions and 1 deletions

View file

@ -90,5 +90,18 @@ return packer.startup(function(use)
use 'neovim/nvim-lspconfig'
use 'kabouzeid/nvim-lspinstall'
use 'hrsh7th/nvim-compe'
use {'hrsh7th/nvim-compe',
config = function()
require('compe').setup({
enabled = true,
source = {
path = true,
buffer = true,
nvim_lsp = true,
nvim_lua = true,
treesitter = true,
},
})
end,
}
end)