Skip to content
Snippets Groups Projects
Commit 05bd1193 authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Add terraform mode

parent b75d5ebd
No related branches found
No related tags found
No related merge requests found
...@@ -853,6 +853,16 @@ Some of my configuration entries where borrowed from other people, see ...@@ -853,6 +853,16 @@ Some of my configuration entries where borrowed from other people, see
** Language specific configuration ** Language specific configuration
*** C
Set indentation size and parameters
#+begin_src emacs-lisp
(setq c-default-style "linux"
c-basic-offset 4)
#+end_src
#+RESULTS:
*** Rust *** Rust
Install =rust-mode= and set the rust language server to [[https://rust-analyzer.github.io/][rust-analyzer]] Install =rust-mode= and set the rust language server to [[https://rust-analyzer.github.io/][rust-analyzer]]
...@@ -975,6 +985,16 @@ chmod +x ~/.cargo/bin/rust-analyzer ...@@ -975,6 +985,16 @@ chmod +x ~/.cargo/bin/rust-analyzer
(use-package nginx-mode) (use-package nginx-mode)
#+end_src #+end_src
*** Terraform
Packages to edit terraform configuration files
#+begin_src emacs-lisp
(use-package terraform-mode)
(use-package terraform-doc)
(use-package company-terraform)
#+end_src
** Magit ** Magit
[[https://magit.vc/][Magit]] is git porcelain inside emacs. [[https://magit.vc/][Magit]] is git porcelain inside emacs.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment