From d1ba7028d70c018dd50ffa450962fa048da39200 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 28 Sep 2019 08:20:15 -0400 Subject: [PATCH] emacs: alloy-mode: indent using spaces rather than tabs --- .emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0577716..f58d46d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1334,7 +1334,8 @@ This function is intended for use with `ivy-ignore-buffers'." (use-package alloy-mode :straight (:host github :repo "dwwmmn/alloy-mode") :mode "\\.als\\'" - :config (setq alloy-basic-offset 2)) + :config (setq alloy-basic-offset 2) + :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil)))) (eval-when-compile (defvar lean-mode-map)) (use-package lean-mode -- 2.20.1