vim/syntax/terraform.vim @ c5124aa20cbd

A bunch more
author Steve Losh <steve@stevelosh.com>
date Fri, 11 Mar 2022 12:36:18 -0500
parents 13111f36fe96
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'