Skip to content

Instantly share code, notes, and snippets.

@r-plus
Created March 31, 2014 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-plus/9889979 to your computer and use it in GitHub Desktop.
Save r-plus/9889979 to your computer and use it in GitHub Desktop.
このvimrcで、3f367ccを適応したNeoBundleだとVim起動時にvim-airlineがロードされていない。4ed2b62まで戻ると、このvimrcでもairlineはロードされる。3f367ccの状態でneomruのLazyをとるとvim-airline, neomruがロードされる。
" NeoBundle
set nocompatible
filetype plugin indent off
if has('vim_starting')
let g:neobundle#types#git#default_protocol = has('gui_win32') ? 'https' : 'git'
set runtimepath+=~/vimfiles/bundle/neobundle.vim/
endif
call neobundle#rc(expand('~/vimfiles/bundle/'))
let g:neobundle#default_options._ = { 'verbose' : 1, 'focus' : 1 }
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundleLazy 'Shougo/neomru.vim'
NeoBundle 'bling/vim-airline'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment