forked from aniani/vim
Problem: filetype: tera files not detected
Solution: detect '*.tera' files as tera filetype,
include a simple filetype plugin
(MuntasirSZN)
closes: #16806
Signed-off-by: MuntasirSZN <muntasir.joypurhat@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
14 lines
314 B
VimL
14 lines
314 B
VimL
" Vim filetype plugin file
|
|
" Language: Tera
|
|
" Maintainer: Muntasir Mahmud <muntasir.joypurhat@gmail.com>
|
|
" Last Change: 2025 Mar 06
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal commentstring={#\ %s\ #}
|
|
|
|
let b:undo_ftplugin = "setlocal commentstring<"
|