diff options
| author | Chris <[email protected]> | 2020-08-10 16:36:32 -0400 | 
|---|---|---|
| committer | Chris <[email protected]> | 2020-08-10 16:36:32 -0400 | 
| commit | 48702888755b28241b864417bed3734a8eb15202 (patch) | |
| tree | 94a0d4a73f74d1c7a2c06e7da3377a1fbf830d56 | |
| parent | 10b29d5510c15ec42a965df7e789469a348178d3 (diff) | |
added some new plugins
| -rw-r--r-- | vim-plug/plugins.vim | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index 81972355..f3682e07 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -55,6 +55,7 @@ call plug#begin('~/.config/nvim/autoload/plugged')    Plug 'tpope/vim-fugitive'    Plug 'tpope/vim-rhubarb'    Plug 'junegunn/gv.vim' +  Plug 'rhysd/git-messenger.vim'    " Terminal    Plug 'voldikss/vim-floaterm'    " Start Screen @@ -71,7 +72,7 @@ call plug#begin('~/.config/nvim/autoload/plugged')    " Interactive code    Plug 'metakirby5/codi.vim'    " Debugging -  Plug 'puremourning/vimspector' +  " Plug 'puremourning/vimspector'    " Better tabline    Plug 'mg979/vim-xtabline'    " undo time travel @@ -98,9 +99,11 @@ call plug#begin('~/.config/nvim/autoload/plugged')    Plug 'mattn/webapi-vim'    " Async Linting Engine    " TODO make sure to add ale config before plugin -  Plug 'dense-analysis/ale' +  " Plug 'dense-analysis/ale'    " Better Whitespace    Plug 'ntpeters/vim-better-whitespace' +  " Multiple Cursors +  Plug 'mg979/vim-visual-multi', {'branch': 'master'}    " Plugin Graveyard | 
