Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: NeoMutt RC File |
| 3 | " Previous Maintainer: Guillaume Brogi <gui-gui@netcourrier.com> |
| 4 | " Latest Revision: 2017-09-17 |
| 5 | " Original version copied from ftplugin/muttrc.vim |
| 6 | |
| 7 | if exists("b:did_ftplugin") |
| 8 | finish |
| 9 | endif |
| 10 | let b:did_ftplugin = 1 |
| 11 | |
| 12 | let s:cpo_save = &cpo |
| 13 | set cpo&vim |
| 14 | |
| 15 | let b:undo_ftplugin = "setl com< cms< inc< fo<" |
| 16 | |
| 17 | setlocal comments=:# commentstring=#\ %s |
| 18 | setlocal formatoptions-=t formatoptions+=croql |
| 19 | |
| 20 | let &l:include = '^\s*source\>' |
| 21 | |
| 22 | let &cpo = s:cpo_save |
| 23 | unlet s:cpo_save |