[b]vim[/b]
[b]Install Vim[/b]
sudo yum install vim
[b]Plugin[/b]
sudo mkdir -p ~/.vim/autoload ~/.vim/bundle
[b]
Installation[/b]
curl -sso ~/.vim/autoload/pathogen.vim
https://raw.github.com/tpope/vim-pathogen/master/autoloadpathogen.vim
[b]Setup Vundle:[/b]
$ sudo git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
[b]Configure bundles:[/b]
Sample vi ~/.vimrc:
[b]Install configured bundles:[/b]
Launch vim, run :BundleInstall (or vim +BundleInstall +qall for CLI lovers)
[b]Install Vim[/b]
sudo yum install vim
[b]Plugin[/b]
sudo mkdir -p ~/.vim/autoload ~/.vim/bundle
[b]
Installation[/b]
curl -sso ~/.vim/autoload/pathogen.vim
https://raw.github.com/tpope/vim-pathogen/master/autoloadpathogen.vim
[b]Setup Vundle:[/b]
$ sudo git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
[b]Configure bundles:[/b]
Sample vi ~/.vimrc:
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
" ...
filetype plugin indent on " required!
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
[b]Install configured bundles:[/b]
Launch vim, run :BundleInstall (or vim +BundleInstall +qall for CLI lovers)