vim/syntax/terraform.vim @ 13111f36fe96

More
author Steve Losh <steve@stevelosh.com>
date Mon, 16 Aug 2021 13:55:18 -0400
parents (none)
children (none)
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'