mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 13:33:49 -05:00
23 lines
584 B
VimL
23 lines
584 B
VimL
let files = filter(globpath(&rtp, 'indent/mail.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'mail') == -1
|
|
|
|
" Vim indent file
|
|
" Language: Mail
|
|
" Maintainer: Bram Moolenaar
|
|
" Last Change: 2009 Jun 03
|
|
|
|
if exists("b:did_indent")
|
|
finish
|
|
endif
|
|
let b:did_indent = 1
|
|
|
|
" What works best is auto-indenting, disable other indenting.
|
|
" For formatting see the ftplugin.
|
|
setlocal autoindent nosmartindent nocindent indentexpr=
|
|
|
|
endif
|