Comment plugins

This commit is contained in:
Daniel Flanagan 2022-03-09 12:04:12 -06:00
parent 460d693a54
commit 1dfcc4d764
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4

View file

@ -46,13 +46,14 @@ packer.startup(function()
},
-- TODO: add keymap <leader>ig for toggling these
'lukas-reineke/indent-blankline.nvim', -- indentation guide lines
'neovim/nvim-lspconfig',
'williamboman/nvim-lsp-installer',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-path',
'hrsh7th/cmp-cmdline',
'neovim/nvim-lspconfig', -- language server configuration helper
'williamboman/nvim-lsp-installer', -- plugin containing installation commands for many language servers
'hrsh7th/cmp-nvim-lsp', -- add lsp to completion engine
'hrsh7th/cmp-buffer', -- add buffer information to completion engine
'hrsh7th/cmp-path', -- add filesystem information to complete enging
'hrsh7th/cmp-cmdline', -- add completion for vim commands
{
-- completion engine
'hrsh7th/nvim-cmp',
config = function()
local cmp = require'cmp'
@ -94,6 +95,7 @@ packer.startup(function()
-- {'ms-jpq/coq_nvim', branch = 'coq'},
-- {'ms-jpq/coq.thirdparty', branch = '3p'},
{
-- syntax highlighting and indentation
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
config = function()