Last active
September 16, 2015 06:35
-
-
Save ressu/2d5d43163e738bf6e1bb 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
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