summaryrefslogtreecommitdiff
path: root/ftplugin/pvx.vim
blob: 813412683717d7220f47510960c6c380bd709f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" Filetype settings for ProvideX / PVX source files.
if exists("b:did_ftplugin")
  finish
endif
let b:did_ftplugin = 1

setlocal commentstring=!\ %s
setlocal comments=:!

" formatpvx.pl indents with one literal tab per level; match that.
setlocal noexpandtab
setlocal tabstop=4
setlocal shiftwidth=4
setlocal softtabstop=4