neovim

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

codeowners.vim (310B)


      1 " Vim filetype plugin
      2 " Language:	codeowners
      3 " Maintainer:	Jon Parise <jon@indelible.org>
      4 " Last Change:	2025 Sep 14
      5 "
      6 if exists('b:did_ftplugin')
      7  finish
      8 endif
      9 let b:did_ftplugin = 1
     10 
     11 setl comments=:# commentstring=#\ %s
     12 setl formatoptions-=t formatoptions+=croql
     13 
     14 let b:undo_ftplugin = 'setl com< cms< fo<'