[vim] Add LSP support for Lua, JS, CSS, and HTML

This commit is contained in:
Eryn Wells 2023-08-23 16:20:15 -07:00
parent e2e47d79fa
commit 00d69312b2
2 changed files with 73 additions and 0 deletions

View file

@ -30,4 +30,14 @@ endif
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
if has('nvim')
Plug 'neovim/nvim-lspconfig'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline'
Plug 'hrsh7th/nvim-cmp'
endif
call plug#end()