blob: 552c865baa69d169cf6f42d100da185d4dc6e7ba [file] [log] [blame]
Bram Moolenaar6aa57292021-08-14 21:25:52 +02001" scdoc filetype plugin
Bram Moolenaar3f32a5f2022-05-12 20:34:15 +01002" Maintainer: Gregory Anders <contact@gpanders.com>
3" Last Updated: 2022-05-09
4" Upstream: https://github.com/gpanders/vim-scdoc
Bram Moolenaar6aa57292021-08-14 21:25:52 +02005
6" Only do this when not done yet for this buffer
7if exists('b:did_ftplugin')
8 finish
9endif
10
11" Don't load another plugin for this buffer
12let b:did_ftplugin = 1
13
14setlocal comments=b:;
15setlocal commentstring=;%s
16setlocal formatoptions+=t
17setlocal noexpandtab
18setlocal shiftwidth=0
19setlocal softtabstop=0
20setlocal textwidth=80
21
22let b:undo_ftplugin = 'setl com< cms< fo< et< sw< sts< tw<'