From d20c51110572d13f078ae7689087ac67491546ce Mon Sep 17 00:00:00 2001 From: bretello Date: Mon, 15 Mar 2021 10:37:52 +0100 Subject: [PATCH] vim: add terraform plugin --- vim/plugins_config.vim | 1 + vim/plugs.vim | 1 + 2 files changed, 2 insertions(+) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index 74508fa..ccf323b 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -12,6 +12,7 @@ let g:ale_fixers = { \ 'css': ['prettier'], \ 'html': ['prettier'], \ 'markdown': ['prettier'], + \ 'terraform': ['terraform'], \ 'java': ['eclipselsp'], \ 'yaml': ['prettier'], \ 'python': ['black', 'isort'], diff --git a/vim/plugs.vim b/vim/plugs.vim index e7fe697..1ba8069 100644 --- a/vim/plugs.vim +++ b/vim/plugs.vim @@ -62,6 +62,7 @@ Plug 'https://github.com/plasticboy/vim-markdown' Plug 'https://github.com/cespare/vim-toml' Plug 'https://github.com/vim-scripts/iptables' Plug 'https://github.com/leafoftree/vim-vue-plugin' +Plug 'https://github.com/hashivim/vim-terraform' Plug 'epheien/termdbg'