2016-02-12 04:45:25 +08:00
|
|
|
" Set the shell to bash so we inherit its path, to make sure
|
|
|
|
" we inherit its path. This affects :Rtags finding the right
|
|
|
|
" path to homebrewed ctags rather than the XCode version of ctags
|
2018-06-29 16:54:08 +08:00
|
|
|
if has("unix")
|
|
|
|
let s:uname = system("uname -s")
|
|
|
|
if s:uname =~ "Darwin"
|
|
|
|
set shell=/usr/local/bin/zsh
|
|
|
|
else
|
|
|
|
set shell=/usr/bin/zsh
|
|
|
|
endif
|
|
|
|
elseif has('win32')
|
2017-03-26 03:10:07 +08:00
|
|
|
endif
|