blob: 7a330e45cfff81c09c1d03b61561c6da10ce1ab5 (
plain) (
tree)
|
|
if polyglot#init#is_disabled(expand('<sfile>:p'), 'terraform', 'syntax/terraform.vim')
finish
endif
if exists('b:current_syntax')
finish
endif
runtime! syntax/hcl.vim
unlet b:current_syntax
syn keyword terraType string bool number object tuple list map set any
hi def link terraType Type
let b:current_syntax = 'terraform'
|