spacemacs/layers/+tools/terraform/README.org

36 lines
1.0 KiB
Org Mode

#+TITLE: Terraform layer
#+TAGS: layer|tool
[[file:img/terraform.png]]
* Table of Contents :TOC_5_gh:noexport:
- [[#description][Description]]
- [[#features][Features:]]
- [[#install][Install]]
- [[#configuration][Configuration]]
- [[#auto-format-on-save][Auto-format on save]]
* Description
This layer provides basic support for Terraform =.tf= files.
** Features:
- Basic syntax highlighting via [[https://github.com/syohex/emacs-terraform-mode][terraform-mode]]
- Auto formatting on save via =terraform fmt=
* Install
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =terraform= to the existing =dotspacemacs-configuration-layers= list in this
file.
You will also need a working native =terraform= installation on your system.
* Configuration
** Auto-format on save
If you want =terraform fmt= to be applied automatically on save then set the
layer variable =terraform-auto-format-on-save= to =t=:
#+BEGIN_SRC emacs-lisp
(terraform :variables terraform-auto-format-on-save t)
#+END_SRC