heex.vim 363 B

1234567891011121314151617
  1. " Elixir filetype plugin
  2. " Language: HEEx
  3. " Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com>
  4. " Last Change: 2022 Sep 21
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal shiftwidth=2 softtabstop=2 expandtab
  10. setlocal comments=:<%!--
  11. setlocal commentstring=<%!--\ %s\ --%>
  12. let b:undo_ftplugin = 'set sw< sts< et< com< cms<'