Skip to content

Instantly share code, notes, and snippets.

@franckweb
Last active April 5, 2018 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franckweb/fa3f4abea0bbcd04f0a288b0f1a9c54f to your computer and use it in GitHub Desktop.
Save franckweb/fa3f4abea0bbcd04f0a288b0f1a9c54f to your computer and use it in GitHub Desktop.
Vim Plugins
# VIM PLUGINS
## Install Pathogen (vim plugins manager)
mkdir -p ~/.vim/autoload ~/.vim/bundle;
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
## Create ~/.vimrc and add these contents
" contents of minimal .vimrc
execute pathogen#infect()
syntax on
filetype plugin indent on
# PLUGINS
## 1. Nerd Tree Toggle: vim content tree sidebar
## and use it in vim with :NERDTreeToggle
cd ~/.vim/bundle
git clone https://github.com/scrooloose/nerdtree.git
## Links
# commandlinepoweruser.com
# github.com/Bash-it/bash-it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment