aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftdetect/sh.vim
blob: 3ab5418bf3139b678918335bac4edbb45f14ebc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" .xinitrc is a shell script
autocmd BufNewFile,BufRead
    \ .xinitrc
    \ setlocal filetype=sh

" Edited bash command lines are shell script
autocmd BufNewFile,BufRead
    \ bash-fc-*
    \ let g:is_bash = 1
    \ setlocal filetype=sh