mail.vim 385 B

12345678910111213141516
  1. " Vim indent file
  2. " Language: Mail
  3. " Maintainer: The Vim Project <https://github.com/vim/vim>
  4. " Last Change: 2023 Aug 13
  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<"