Add autocomplete support

This commit is contained in:
2021-10-13 11:32:56 -05:00
parent 467933a14e
commit 2660d9e7c4
3 changed files with 56 additions and 1 deletions

6
vimrc
View File

@ -68,6 +68,12 @@ if filereadable(expand("~/.config/nvim/plugins.vimrc"))
endif
call plug#end()
" Autocomplete
if filereadable(expand("~/.config/nvim/nvim-cmp.vimrc"))
source ~/.config/nvim/nvim-cmp.vimrc
endif
" LSP
if filereadable(expand("~/.config/nvim/lspconfig.vimrc"))
source ~/.config/nvim/lspconfig.vimrc
endif