blob: 9f612f54479dfb6898819e2bd96c685a917818e2 [file] [log] [blame]
Bram Moolenaar6ebe4f92022-10-28 20:47:54 +01001" Vim filetype plugin
2" Language: apache configuration file
3" Maintainer: Per Juchtmans <dubgeiser+vimNOSPAM@gmail.com>
4" Last Change: 2022 Oct 22
5
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11setlocal comments=:#
12setlocal commentstring=#\ %s
13
14let b:undo_ftplugin = "setlocal comments< commentstring<"
15
16" vim: nowrap sw=2 sts=2 ts=8 noet: