plugins - Added vim-terraform

This commit is contained in:
Emmanuel BENOîT 2023-06-24 15:56:40 +02:00
parent 588d663a76
commit fdff209eff
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
3 changed files with 8 additions and 1 deletions

View file

@ -1 +0,0 @@
NeoBundle 'hashivim/vim-terraform'

View file

@ -0,0 +1,2 @@
" Format Terraform files automatically
let g:terraform_fmt_on_save = 1

View file

@ -0,0 +1,6 @@
call dein#add('hashivim/vim-terraform', #{
\ lazy: 1,
\ merge_ftdetect: v:true,
\ on_ft: ['hcl', 'terraform'],
\ on_cmd: ['Terraform', 'TerraformFmt']
\ })