summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2021-06-05 15:48:18 +0200
committerAlan Pearce2021-06-05 15:48:18 +0200
commitba51456532c18f04a717fb4b0ea832bac9b9c009 (patch)
treeb24408060d1773c66cc09902e478b0202dea6956
parentb1cc8c0bf8b699c435e967873d88159aae7b2ad4 (diff)
downloadnixfiles-ba51456532c18f04a717fb4b0ea832bac9b9c009.tar.lz
nixfiles-ba51456532c18f04a717fb4b0ea832bac9b9c009.tar.zst
nixfiles-ba51456532c18f04a717fb4b0ea832bac9b9c009.zip
emacs: fix nix-indent-line warning
-rw-r--r--user/emacs/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/user/emacs/init.el b/user/emacs/init.el index 8440b9c7..bc72900d 100644 --- a/user/emacs/init.el +++ b/user/emacs/init.el
@@ -765,7 +765,8 @@ _p_rev _u_pper _=_: upper/lower _r_esolve
765 (setq-local indent-tabs-mode t))) 765 (setq-local indent-tabs-mode t)))
766 766
767;;;; nix 767;;;; nix
768(setq nix-indent-function #'nix-indent-line) 768(with-eval-after-load 'nix-mode
769 (setq nix-indent-function #'nix-indent-line))
769 770
770(use-package nix-update 771(use-package nix-update
771 :commands (nix-update-fetch)) 772 :commands (nix-update-fetch))