aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/sh.vim
blob: 96ad8e6d901934e364548e80c0bc8d20e2143497 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" Include slashes as part of 'isk' so that e.g. 'local' in '/usr/local/mysql'
" doesn't highlight
let g:sh_isk='@,48-57,_,192-255,.,/'

" Assume POSIX, I never write Bourne
let g:is_posix=1

" Use han(1df) as a man(1) wrapper for Bash files if available
if exists('b:is_bash') && executable('han')
  setlocal keywordprg=han
endif