aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-terraform.el
blob: 3e48b78340bf6d76736330caa71ef28c04582581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;;; init-terraform.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
;; yaml-mode
(use-package terraform-mode
  :pin "MELPA"
  :mode ("\\.tf\\'" . terraform-mode))

(provide 'init-terraform)
;;; init-terraform.el ends here