neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

apache.vim (361B)


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