aboutsummaryrefslogtreecommitdiff
path: root/plugin/max-find-bash.vim
blob: a5e243b89e317aa6d37cabc1a3ad87ca0d8293d4 (plain)
1
2
3
4
5
6
7
8
9
"=======================================================================================================================
" 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
endif
..