chatito.vim 383 B

12345678910111213141516
  1. " Vim filetype plugin
  2. " Language: Chatito
  3. " Maintainer: ObserverOfTime <chronobserver@disroot.org>
  4. " Last Change: 2022 Sep 19
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal comments=:#,:// commentstring=#\ %s
  10. " indent of 4 spaces is mandated by the spec
  11. setlocal expandtab softtabstop=4 shiftwidth=4
  12. let b:undo_ftplugin = 'setl com< cms< et< sts< sw<'