diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/custom/fcuny-conf.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-conf.el b/emacs/custom/fcuny-conf.el index a2642cd..dadde76 100644 --- a/emacs/custom/fcuny-conf.el +++ b/emacs/custom/fcuny-conf.el @@ -33,4 +33,15 @@ :hook ((systemd-mode . flyspell-prog-mode) (systemd-mode . company-mode))) +(use-package hcl-mode + :ensure t) + +(use-package terraform-mode + :ensure t + :mode (("\\.tf\\'" . terraform-mode)) + :hook (terraform-mode . terraform-format-on-save-mode)) + +(use-package terraform-doc + :ensure t) + (provide 'fcuny-conf) |