code / vim-tomo

Lines184 vim script176 Markdown8
(16 lines)
1 " Language: Tomo
2 " Maintainer: Bruce Hill <bruce@bruce-hill.com>
3 " License: WTFPL
5 if exists("b:did_ftplugin")
6 finish
7 endif
8 let b:did_ftplugin = 1
10 setlocal formatoptions-=t
11 setlocal cpoptions+=M
12 setlocal expandtab shiftwidth=4 tabstop=4
14 setlocal commentstring=#\ %s
16 let b:undo_ftplugin = "setlocal formatoptions< cpoptions< expandtab< shiftwidth< tabstop< commentstring<"