15 lines
281 B
VimL
15 lines
281 B
VimL
" Language: Nomsu
|
|
" 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 iskeyword=46,58,44,40,41,34,91,92,93
|
|
|
|
|
|
let b:undo_ftplugin = "setlocal formatoptions<"
|