Vim
Plugged Plugin Manager
- Install Plugged plugin manager via https://github.com/junegunn/vim-plug
- Add the following lines into your ~/.vimrc file
call plug#begin('~/.vim/plugged') Plug 'godlygeek/csapprox' "Plug 'ctrlpvim/ctrlp.vim' Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'Raimondi/delimitMate' Plug 'dag/vim-fish' Plug 'fatih/vim-go' Plug 'vim-scripts/groovy.vim' Plug 'Yggdroot/indentLine' Plug 'marslo/jenkinsfile-vim-syntax' Plug 'preservim/nerdtree' Plug 'godlygeek/tabular' Plug 'edkolev/tmuxline.vim' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' "Plug 'tpope/vim-endwise' "Plug 'tpope/vim-fugitive' Plug 'b4b4r07/vim-hcl' "Plug 'mustache/vim-mustache-handlebars' Plug 'rodjek/vim-puppet' Plug 'tpope/vim-rails' Plug 'tpope/vim-surround' Plug 'hashivim/vim-terraform' " Colors Plug 'rakr/vim-one' Plug 'joshdick/onedark.vim' call plug#end()
- Inside vim, run
:PlugInstall
to install plugins