blob: 1ef09a16e36af5a9e6269d4738d0b1111a2c15c2 [file] [log] [blame]
Bram Moolenaar22863042021-10-16 15:23:36 +01001" Vim filetype plugin
2" Language: TOML
3" Homepage: https://github.com/cespare/vim-toml
4" Maintainer: Aman Verma
5" Author: Kevin Ballard <kevin@sb.org>
6" Last Change: Sep 21, 2021
7
8if exists('b:did_ftplugin')
9 finish
10endif
11let b:did_ftplugin = 1
12
13let s:save_cpo = &cpo
14set cpo&vim
15let b:undo_ftplugin = 'setlocal commentstring< comments<'
16
17setlocal commentstring=#\ %s
18setlocal comments=:#
19
20let &cpo = s:save_cpo
21unlet s:save_cpo
22
23" vim: et sw=2 sts=2