11 lines
620 B
VimL
11 lines
620 B
VimL
|
|
" Klammertext filetype detection (.kt source files, .k klammer definitions).
|
||
|
|
"
|
||
|
|
" NOTE: .kt is also Kotlin's extension, and recent Vim/Neovim runtimes map
|
||
|
|
" *.kt to the kotlin filetype. This file overrides that unconditionally
|
||
|
|
" (`set filetype=`, not `setfiletype`, so it wins over the runtime's
|
||
|
|
" earlier detection). If you edit both Kotlin and Klammertext, replace the
|
||
|
|
" *.kt line with a content heuristic of your choice, or drop it and set the
|
||
|
|
" filetype per file with a modeline (# vim: ft=klammertext) or :set.
|
||
|
|
au BufRead,BufNewFile *.kt set filetype=klammertext
|
||
|
|
au BufRead,BufNewFile *.k set filetype=klammertext
|