Skip to content

Instantly share code, notes, and snippets.

View Mvrs's full-sized avatar
🎯
Focusing

Marlon Johnson Mvrs

🎯
Focusing
  • Oakland CA
  • 08:12 (UTC -07:00)
View GitHub Profile
@sabarasaba
sabarasaba / gist:3080590
Created July 10, 2012 02:19
Remove directory from remote repository after adding them to .gitignore
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master
@ianoxley
ianoxley / install_pathogen.sh
Created December 19, 2011 10:35
Install pathogen.vim on Windows
# From https://github.com/tpope/vim-pathogen with .vim replaced with vimfiles
mkdir -p ~/vimfiles/autoload ~/vimfiles/bundle; \
curl -so ~/vimfiles/autoload/pathogen.vim \
https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim
# Install some plugins
cd ~/vimfiles/bundle
git clone git://github.com/scrooloose/nerdtree.git
git clone git://github.com/msanders/snipmate.vim.git