mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 03:23:51 -05:00
16 lines
351 B
VimL
16 lines
351 B
VimL
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'
|