This commit is contained in:
baabelfish 2016-02-22 11:12:53 +02:00
commit c3f6a03349
9 changed files with 123 additions and 35 deletions

15
syntax/nims.vim Normal file
View file

@ -0,0 +1,15 @@
scriptencoding utf-8
if version < 600
syntax clear
elseif exists("b:current_syntax")
finish
endif
syntax keyword nimTypedef task
syntax keyword nimBuiltinFunction exec
syntax keyword nimStorage build tests bench
so <sfile>:p:h/nim.vim
let b:current_syntax = "nims"