.vim: Dammit

Forgot to trim .git information from plugins
This commit is contained in:
2017-08-16 14:37:46 -05:00
parent 85b63b8319
commit 58b1e98578
61 changed files with 3438 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
" vim-template syntax file
" Language: vim-template
" Maintainer: Lyude Paul <thatslyude@gmail.com>
" Last Change: 2014 April 21
if exists("b:current_syntax")
finish
endif
if b:vim_template_subtype != ""
execute "runtime! syntax/" . b:vim_template_subtype . ".vim"
unlet b:current_syntax
endif
syn match vimtemplateVariable "%\%(DAY\|YEAR\|MONTH\|MONTHSHORT\|MONTHFULL\|DATE\|TIME\|FILE\|FFILE\|EXT\|MAIL\|USER\|HOST\|GUARD\|CLASS\|MACROCLASS\|CAMELCLASS\|HERE\)%" containedin=ALL
let b:current_syntax = "vim-template"
hi def link vimtemplateVariable Constant