Skip to content

Instantly share code, notes, and snippets.

@akishin
Created November 4, 2012 07:56
Show Gist options
  • Save akishin/4010792 to your computer and use it in GitHub Desktop.
Save akishin/4010792 to your computer and use it in GitHub Desktop.
.vimrc.neobundle
" neobundle required.
set nocompatible
filetype off
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#rc(expand('~/.vim/bundle/'))
NeoBundle 'Shougo/vimproc'
NeoBundle 'Wombat'
NeoBundle 'pyte'
NeoBundle 'rails.vim'
NeoBundle 'unite.vim'
NeoBundle 'neocomplcache'
NeoBundle 'surround.vim'
NeoBundle 'The-NERD-tree'
NeoBundle 'The-NERD-Commenter'
NeoBundle 'taglist.vim'
NeoBundle 'matchit.zip'
NeoBundle 'quickrun.vim'
NeoBundle 'vim-scripts/SrcExpl'
NeoBundle 'sudo.vim'
NeoBundle 'endwise.vim'
NeoBundle 'Align'
NeoBundle 'Lokaltog/vim-powerline'
NeoBundle 'fugitive.vim'
NeoBundle 'git://github.com/vim-ruby/vim-ruby.git'
NeoBundle 'git://github.com/derekwyatt/vim-scala.git'
NeoBundle 'git://github.com/wlangstroth/vim-haskell.git'
filetype plugin indent on
" Installation check.
" if neobundle#exists_not_installed_bundles()
" echomsg 'Not installed bundles : ' .
" \ string(neobundle#get_not_installed_bundle_names())
" echomsg 'Please execute ":NeoBundleInstall" command.'
" "finish
" endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment