diff options
author | Franck Cuny <fcuny@roblox.com> | 2022-02-03 08:50:48 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@roblox.com> | 2022-02-03 08:50:48 -0800 |
commit | 818d69ac3266e2d5706610aab517f65806fd6340 (patch) | |
tree | 3f7fecf62d8aaaeeef59c7da07b01136a1ba6f28 | |
parent | git: configure sourcegraph for roblox (diff) | |
download | emacs.d-818d69ac3266e2d5706610aab517f65806fd6340.tar.gz |
config: add modes for hashistack
That includes terraform and hcl.
Diffstat (limited to '')
-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) |