summaryrefslogtreecommitdiffstats
path: root/syntax/terraform.vim
blob: 7a330e45cfff81c09c1d03b61561c6da10ce1ab5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'