aboutsummaryrefslogtreecommitdiff
path: root/plugin/max-find-shell.vim
blob: 778f0fb01bf34547e9daf09364c6c50c41381a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
"=======================================================================================================================
" SHELL:
" Many scripts rely on bash. We help to find the bash binary
"=======================================================================================================================
if filereadable("/bin/bash")
    set shell=/bin/bash
elseif filereadable("/usr/local/bin/bash")
    set shell=/usr/local/bin/bash
elseif has("win32")
    set shell="cmd.exe"
endif
..