Inital commit

new file that has all the plugins to be loaded. This file will be called from a source line in init.vim
This commit is contained in:
Russell R. 2020-10-01 22:02:48 -04:00
parent ce6604a9e1
commit dbe7951b86
1 changed files with 24 additions and 0 deletions

24
plugins-to-load.vim Normal file
View File

@ -0,0 +1,24 @@
" ***********************************************************
" ********************* install pluggins ********************
" ***********************************************************
"
call plug#begin('~/.vim/plugged')
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'preservim/nerdtree' " file manager
Plug 'roxma/nvim-yarp'
Plug 'tpope/vim-fugitive' " git
Plug 'tpope/vim-rhubarb'
Plug 'vim-airline/vim-airline' " cool status bar
Plug 'airblade/vim-gitgutter' " git changes
Plug 'vim-airline/vim-airline-themes' " themes for status bar
Plug 'itchyny/lightline.vim'
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " golang
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } " fuzzy finder
Plug 'junegunn/fzf.vim' " fuzzy finder
Plug 'airblade/vim-rooter'
Plug 'vimwiki/vimwiki'
Plug 'gertjanreynaert/cobalt2-vim-theme' " added coblt2 theme
call plug#end()