mail.vim 355 B

12345678910111213141516
  1. " Vim indent file
  2. " Language: Mail
  3. " Maintainer: Bram Moolenaar
  4. " Last Change: 2021 Sep 26
  5. if exists("b:did_indent")
  6. finish
  7. endif
  8. let b:did_indent = 1
  9. " What works best is auto-indenting, disable other indenting.
  10. " For formatting see the ftplugin.
  11. setlocal autoindent nosmartindent nocindent indentexpr=
  12. let b:undo_indent = "setl ai< cin< inde< si<"