neovim

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

cabal.vim (393B)


      1 " Vim filetype plugin file
      2 " Language:	Haskell Cabal Build file
      3 " Maintainer:	Riley Bruins <ribru17@gmail.com>
      4 " Last Change:	2024 Jul 06
      5 " 2026 Jan 13 by Vim project: set compiler #19152
      6 
      7 if exists('b:did_ftplugin')
      8  finish
      9 endif
     10 let b:did_ftplugin = 1
     11 
     12 compiler cabal
     13 
     14 let b:undo_ftplugin = 'compiler make'
     15 
     16 setl comments=:-- commentstring=--\ %s
     17 
     18 let b:undo_ftplugin .= '| setl com< cms<'