Update plugins

This commit is contained in:
John Mertz 2022-08-23 14:16:27 -06:00
parent 7f920bb7bd
commit 600a64c354
1 changed files with 7 additions and 2 deletions

View File

@ -11,12 +11,17 @@ unlet autoload_plug_path
call plug#begin('~/.dotfiles/nvim/plugins') call plug#begin('~/.dotfiles/nvim/plugins')
" Plugins here " Plugins here
" LSP - Language Server Protocol
Plug 'neovim/nvim-lspconfig'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline'
Plug 'hrsh7th/nvim-cmp'
" TreeSitter - Syntax highlighting " TreeSitter - Syntax highlighting
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
" Fold-Cycle - Better management of foldable blocks " Fold-Cycle - Better management of foldable blocks
Plug 'jghauser/fold-cycle.nvim' Plug 'jghauser/fold-cycle.nvim'
" LSP - Language Server Protocol
Plug 'neovim/nvim-lspconfig'
" Git Gutter - Git diff markers " Git Gutter - Git diff markers
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
" Lightline - lightweight status/tabline beautification " Lightline - lightweight status/tabline beautification