Emacs: improve nix indentation and make automatic
Alan Pearce alan@alanpearce.eu
Sun, 09 Oct 2022 05:58:26 +0200
1 files changed, 5 insertions(+), 1 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -794,7 +794,11 @@ (setq-local indent-tabs-mode t))) ;;;; nix (with-eval-after-load 'nix-mode - (setq nix-indent-function #'nix-indent-line)) + (setq nix-mode-use-smie t + nix-indent-function #'smie-indent-line) + (general-add-hook 'nix-mode-hook + (lambda () + (add-hook 'before-save-hook #'nix-mode-format 0 'local)))) (use-package nix-update :commands (nix-update-fetch))