Created
August 7, 2014 02:01
-
-
Save sigwyg/899d7b6302e575456756 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
filetype off | |
filetype plugin indent off | |
if has('vim_starting') | |
set nocompatible | |
set runtimepath+=~/.vim/bundle/neobundle.vim | |
endif | |
call neobundle#begin(expand('~/.vim/bundle/')) | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
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' ] } | |
call neobundle#end() | |
filetype plugin indent on | |
let g:vimfiler_as_default_explorer = 1 | |
let g:unite_source_ssh_enable_debug = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
minimal .vimrc for debug