Skip to content

Instantly share code, notes, and snippets.

@ressu
Last active September 16, 2015 06:35
Show Gist options
  • Save ressu/2d5d43163e738bf6e1bb to your computer and use it in GitHub Desktop.
Save ressu/2d5d43163e738bf6e1bb to your computer and use it in GitHub Desktop.
if has('vim_starting')
set nocompatible
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
if has("eval")
call neobundle#begin(expand('~/.vim/bundle'))
NeoBundle 'Shougo/neobundle-vim-recipes', {'force': 1}
NeoBundleRecipe 'neobundle'
endif
if exists("#neobundle")
NeoBundleRecipe 'vimfiler'
endif
if exists("*neobundle#end")
call neobundle#end()
endif
if v:version >= 600
filetype plugin indent on
endif
if exists(":NeoBundleCheck")
NeoBundleCheck
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment