terraform support has been added

This commit is contained in:
Sameer Rahmani 2018-04-23 14:36:46 +01:00
parent 234d0e506c
commit 1d7e5935c2
2 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,9 @@
(with-ability parinfer
(depends-on 'parinfer))
(with-ability terraform
(depends-on 'terraform-mode))
(with-ability yaml
(depends-on 'yaml-mode))
;; (with-ability hl

View File

@ -199,6 +199,11 @@
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
(add-to-list 'auto-mode-alist '("\\.sls\\'" . yaml-mode)))
(ability terraform ()
"Terraform editor."
(require 'terraform-mode)
(add-to-list 'auto-mode-alist '("\\.tf\\'" . terraform-mode)))
(ability code-browser ()
"Adds the code browser to FG42."
(require 'neotree)