23 lines
506 B
VimL
23 lines
506 B
VimL
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'twig') == -1
|
|
|
|
" Vim filetype plugin
|
|
" Language: Twig
|
|
" Maintainer: F. Gabriel Gosselin <gabrielNOSPAM@evidens.ca>
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
runtime! ftplugin/html.vim ftplugin/html*.vim ftplugin/html/*.vim
|
|
unlet! b:did_ftplugin
|
|
|
|
setlocal comments=s:{#,ex:#}
|
|
setlocal formatoptions+=tcqln
|
|
" setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^[-*+]\\s\\+
|
|
|
|
let b:undo_ftplugin .= "|setl cms< com< fo<"
|
|
|
|
" vim:set sw=2:
|
|
|
|
endif
|