apache.vim 361 B

1234567891011121314151617
  1. " Vim filetype plugin
  2. " Language: apache configuration file
  3. " Maintainer: Per Juchtmans <dubgeiser+vimNOSPAM@gmail.com>
  4. " Last Change: 2022 Oct 22
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal comments=:#
  10. setlocal commentstring=#\ %s
  11. let b:undo_ftplugin = "setlocal comments< commentstring<"
  12. " vim: nowrap sw=2 sts=2 ts=8 noet: