Created
March 3, 2011 23:45
-
-
Save plagelao/853872 to your computer and use it in GitHub Desktop.
vim plugins
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
" vundle | |
set rtp+=~/.vim/vundle.git/ | |
call vundle#rc() |
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
" Bundles | |
" Ruby on Rails: easy file navigation, enhanced syntax highlighting, and more | |
Bundle "rails.vim" | |
" plugin for ack | |
Bundle "ack.vim" | |
" A tree explorer plugin for navigating the filesystem | |
Bundle "The-NERD-tree" | |
" provides syntax highlightling, indenting, and a filetype plugin for Cucumber | |
Bundle "cucumber.zip" | |
" provides haml syntax highlightling | |
Bundle "Haml" | |
" Wisely add 'end' in ruby, endfunction/endif/more in vim script, etc | |
Bundle "endwise.vim" | |
" Delete/change/add parentheses/quotes/XML-tags/much more with ease | |
Bundle "surround.vim" | |
" Pairs of handy bracket mappings | |
Bundle "unimpaired.vim" | |
" Ruby refactoring tool | |
Bundle "http://github.com/ecomba/vim-ruby-refactoring.git" |
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
:BundleInstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment