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

49 lines
1.5 KiB
Org Mode
Raw Permalink Normal View History

#+TITLE: Terraform layer
2015-07-23 23:57:45 +00:00
2019-05-02 21:49:30 +00:00
#+TAGS: layer|tool
2015-07-23 23:57:45 +00:00
[[file:img/terraform.png]]
2019-05-07 20:05:06 +00:00
* Table of Contents :TOC_5_gh:noexport:
2017-05-22 14:16:12 +00:00
- [[#description][Description]]
- [[#features][Features:]]
2017-05-22 14:16:12 +00:00
- [[#install][Install]]
- [[#configuration][Configuration]]
- [[#auto-format-on-save][Auto-format on save]]
- [[#lsp][LSP]]
2015-07-23 23:57:45 +00:00
* 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=
- LSP support for terraform-lsp via =terraform-backend=
2015-07-23 23:57:45 +00:00
* 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=:
2018-09-19 03:54:47 +00:00
#+BEGIN_SRC emacs-lisp
(terraform :variables terraform-auto-format-on-save t)
2018-09-19 03:54:47 +00:00
#+END_SRC
** LSP
To enable LSP, install [[https://github.com/juliosueiras/terraform-lsp][terraform-lsp]].
Then set the layer variable =terraform-backend= to ='lsp= like shown below:
#+BEGIN_SRC emacs-lisp
(terraform :variables terraform-backend 'lsp)
#+END_SRC
Alternatively you can also keep the variable on nil, then lsp will be used if lsp
layer is loaded.