vim-tomo/ftplugin/tomo.vim

16 lines
296 B
VimL
Raw Permalink Normal View History

2024-11-25 22:03:12 -08:00
" Language: Tomo
2022-11-11 18:25:19 -08:00
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
setlocal formatoptions-=t
setlocal cpoptions+=M
2024-11-25 22:01:01 -08:00
setlocal commentstring=#\ %s
2022-11-11 18:25:19 -08:00
let b:undo_ftplugin = "setlocal formatoptions< cpoptions<"