purescript.vim 298 B

123456789101112131415
  1. " Vim filetype plugin
  2. " Language: purescript
  3. " Maintainer: Riley Bruins <ribru17@gmail.com>
  4. " Last Change: 2024 May 19
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setl comments=s1f:{-,mb:\ ,ex:-},:--\ \|,:--
  10. setl commentstring=--\ %s
  11. let b:undo_ftplugin = 'setl com< cms<'