Created
November 8, 2012 07:58
-
-
Save qickstarter/4037455 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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