mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 13:33:49 -05:00
Add hcl support, closes #403
This commit is contained in:
15
indent/hcl.vim
Normal file
15
indent/hcl.vim
Normal file
@@ -0,0 +1,15 @@
|
||||
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'hcl') != -1
|
||||
finish
|
||||
endif
|
||||
|
||||
if exists('b:did_indent')
|
||||
finish
|
||||
endif
|
||||
|
||||
let b:did_indent = 1
|
||||
|
||||
" cindent seems to work adequately with HCL's brace-y syntax
|
||||
setlocal cindent
|
||||
|
||||
" don't de-indent comments (cindent treats them like preprocessor directives)
|
||||
setlocal cinkeys-=0#
|
||||
Reference in New Issue
Block a user