aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftdetect/sh.vim
blob: d08b5b45a6c9b221f06ae81c3ce9c23a851063b4 (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