Neovim: switch from lspinstall to nvim-lsp-installer, coq_nvim to

nvim-cmp
This commit is contained in:
Marko Korhonen 2021-11-26 18:19:36 +02:00
parent 65c6c66dc8
commit 91b671057e
5 changed files with 94 additions and 123 deletions

View file

@ -61,14 +61,15 @@ require('packer').startup(function()
-- Configs for built-in LSP
use 'neovim/nvim-lspconfig'
-- Install LSP executables
use 'kabouzeid/nvim-lspinstall'
-- Install LSP server executables
use 'williamboman/nvim-lsp-installer'
-- Completion
use {'ms-jpq/coq_nvim', branch = 'coq'}
-- Snippets for coq_nvim
use {'ms-jpq/coq.artifacts', branch = 'artifacts'}
use 'hrsh7th/nvim-cmp' -- Autocompletion plugin
use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp
use 'hrsh7th/cmp-path' -- Path source for nvim-cmp
use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp
use 'L3MON4D3/LuaSnip' -- Snippets plugin
-- treesitter syntax highlight
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}