spacemacs/layers/+tools/terraform/packages.el
Maximilian Wolff 5dcf7ae8e6
[terraform] Revise terraform lsp support
Made lsp support for terraform follow the convention
that if not explicitly set the backend shall be
inferred from the loaded layers in the dotfile.
2020-06-22 21:27:12 +02:00

34 lines
920 B
EmacsLisp

;;; packages.el --- terraform Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
;;
;; Author: Brian Hicks <brian@brianthicks.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq terraform-packages
'(
company
(company-terraform :requires company)
terraform-mode
))
(defun terraform/post-init-company ()
(spacemacs//terraform-setup-company))
(defun terraform/init-company-terraform ()
(use-package company-terraform
:defer t))
(defun terraform/init-terraform-mode ()
(use-package terraform-mode
:defer t
:init (add-hook 'terraform-mode-hook
'spacemacs//terraform-setup-backend)
:config (when terraform-auto-format-on-save
(add-hook 'terraform-mode-hook
'terraform-format-on-save-mode))))