Last active
December 12, 2015 03:08
-
-
Save everaldo/4704760 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set expandtab | |
set tabstop=2 shiftwidth=2 softtabstop=2 | |
set autoindent | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## https://github.com/tpope/vim-pathogen | |
sudo apt-get install curl | |
mkdir -p ~/.vim/autoload ~/.vim/bundle; \ | |
curl -Sso ~/.vim/autoload/pathogen.vim \ | |
https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim | |
cd ~/.vim/bundle | |
git clone git://github.com/tpope/vim-sensible.git | |
cd ~/.vim/bundle | |
git clone git://github.com/tpope/vim-rails.git | |
git clone git://github.com/tpope/vim-bundler.git | |
git clone git://github.com/airblade/vim-gitgutter.git | |
git clone https://github.com/kchmck/vim-coffee-script.git | |
git clone [email protected]:tpope/vim-cucumber.git | |
#Install vim-fugitive and ctags | |
#https://gist.github.com/everaldo/7183298 | |
cd ~/.vim/bundle | |
git clone git://github.com/tpope/vim-rake.git | |
git clone git://github.com/tpope/vim-projectionist.git | |
## Gere as helptags with | |
## http://usevim.com/2012/12/21/vim-101-help-tags/ | |
:Helptags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/rking/ag.vim#readme | |
https://github.com/kien/ctrlp.vim | |
https://github.com/tpope/vim-surround | |
https://github.com/mattn/gist-vim | |
https://github.com/gmarik/vundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment