Skip to content

Instantly share code, notes, and snippets.

@qickstarter
Created November 8, 2012 07:58
Show Gist options
  • Save qickstarter/4037455 to your computer and use it in GitHub Desktop.
Save qickstarter/4037455 to your computer and use it in GitHub Desktop.
set nobackup
" neobundle
filetype plugin indent off " required!
if has('vim_starting')
set runtimepath+=~/.bundle/neobundle.vim
call neobundle#rc(expand('~/.bundle/'))
endif
NeoBundle 'Shougo/neocomplcache'
NeoBundle 'vim-ruby/vim-ruby'
" 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
filetype plugin indent on
let g:neocomplcache_enable_at_startup = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment