Vim Plugins

Essential Vim plugins and plugin managers

Plugin Managers

# Vim-Plug (popular)
curl -fLo ~/.vim/autoload/plug.vim --create-dirs
  https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

# Vundle
git clone https://github.com/VundleVim/Vundle.vim.git
  ~/.vim/bundle/Vundle.vim

Using Vim-Plug

# In .vimrc
call plug#begin(~/.vim/plugged)
Plug preservim/nerdtree # file explorer
Plug junegunn/fzf.vim # fuzzy finder
call plug#end()

# Install plugins
:PlugInstall

Essential Plugins

NERDTree # file system explorer
fzf.vim # fuzzy file finder
vim-airline # status bar
vim-fugitive # Git integration
coc.nvim # IntelliSense engine
vim-surround # surround text

Code Quality

ALE # async linting engine
syntastic # syntax checking
vim-autoformat # auto formatting
vim-commentary # easy commenting
indentLine # display indent levels

Themes & UI

gruvbox # popular color scheme
onedark.vim # Atom-inspired theme
dracula # Dracula theme
vim-devicons # file icons
rainbow # rainbow parentheses