aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/awk.vim
blob: 6a8ac1ac781618252193896abfd7ce3e3526803e (plain) (blame)
1
2
3
4
5
6
7
8
9
" Extra configuration for AWK scripts
if &filetype !=# 'awk' || v:version < 700
  finish
endif

" Set comment formats
setlocal comments=:#
setlocal formatoptions+=or
let b:undo_ftplugin .= '|setlocal comments< formatoptions'