Skip to content

Instantly share code, notes, and snippets.

@supermomonga
Created September 30, 2013 15:57
Show Gist options
  • Save supermomonga/6765943 to your computer and use it in GitHub Desktop.
Save supermomonga/6765943 to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
if has('vim_starting')
set runtimepath+=~/.vim/debug/bundle/neobundle.vim
endif
call neobundle#rc(expand('~/.vim/debug/bundle/'))
NeoBundle 'Shougo/vimproc.vim', { 'build' : {
\ 'windows' : 'mingw32-make -f make_mingw32.mak',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ }}
NeoBundle 'Shougo/unite.vim', { 'depends' : [ 'Shougo/vimproc.vim' ] }
NeoBundle 'Shougo/vimfiler.vim', { 'depends' : [ 'Shougo/unite.vim' ] }
NeoBundle 'Shougo/unite-ssh', { 'depends' : [ 'Shougo/unite.vim' ] }
let g:vimfiler_as_default_explorer = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment