mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 05:23:51 -05:00
16 lines
314 B
VimL
16 lines
314 B
VimL
if !polyglot#util#IsEnabled('hcl', expand('<sfile>:p'))
|
|
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#
|