Skip to content

Instantly share code, notes, and snippets.

@cruor99
Created February 21, 2016 17:48
Show Gist options
  • Save cruor99/1f2c870f3ca3cca48838 to your computer and use it in GitHub Desktop.
Save cruor99/1f2c870f3ca3cca48838 to your computer and use it in GitHub Desktop.
if has("vim_starting")
if has("unix")
let s:uname = system("uname -s")
if s:uname == "Darwin\n"
"Mac stuff here
set runtimepath+=/Users/cruor/.config/nvim/bundle/neobundle.vim
call neobundle#begin(expand("/Users/cruor/.config/nvim/bundle"))
endif
if s:uname == "Linux\n"
let s:uname = system("echo -n \"$(uname)\"")
"Linux stuff here
set runtimepath+=/home/cruor/.config/nvim/bundle/neobundle.vim
call neobundle#begin(expand("/home/cruor/.config/nvim/bundle"))
endif
endif
endif
NeoBundleFetch "Shougo/neobundle.vim"
NeoBundle "Lokaltog/vim-powerline.git"
NeoBundle "nvie/vim-flake8.git"
NeoBundle "Shougo/unite.vim"
NeoBundle "Shougo/neomru.vim"
NeoBundle "mattn/gist-vim"
NeoBundle "mattn/webapi-vim" "git-vim dependency
call neobundle#end()
filetype plugin indent on
NeoBundleCheck
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment