neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

mail.vim (385B)


      1 " Vim indent file
      2 " Language:	Mail
      3 " Maintainer:	The Vim Project <https://github.com/vim/vim>
      4 " Last Change:	2023 Aug 13
      5 
      6 if exists("b:did_indent")
      7  finish
      8 endif
      9 let b:did_indent = 1
     10 
     11 " What works best is auto-indenting, disable other indenting.
     12 " For formatting see the ftplugin.
     13 setlocal autoindent nosmartindent nocindent indentexpr=
     14 
     15 let b:undo_indent = "setl ai< cin< inde< si<"