Created
June 20, 2013 04:27
-
-
Save supermomonga/5820299 to your computer and use it in GitHub Desktop.
updatetime issue
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
augroup MyAutoCmd | |
autocmd! | |
augroup END | |
" NeoBundle initalize | |
set nocompatible | |
if has('vim_starting') | |
set runtimepath+=~/.vim/debug/bundle/neobundle.vim/ | |
endif | |
call neobundle#rc(expand('~/.vim/debug/bundle')) | |
" NeoBundle packages | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
NeoBundle 'Shougo/vimproc', { | |
\ 'build' : { | |
\ 'mac' : 'make -f make_mac.mak' | |
\ } | |
\ } | |
NeoBundle 'Shougo/vimshell' | |
" VimShellを自動で起動 | |
autocmd MyAutoCmd VimEnter * VimShell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment