Skip to content

Instantly share code, notes, and snippets.

@sigwyg
Created August 7, 2014 02:01
Show Gist options
  • Save sigwyg/899d7b6302e575456756 to your computer and use it in GitHub Desktop.
Save sigwyg/899d7b6302e575456756 to your computer and use it in GitHub Desktop.
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
@sigwyg
Copy link
Author

sigwyg commented Aug 7, 2014

minimal .vimrc for debug

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment