summary refs log tree commit diff
path: root/config/init-nix.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
committerFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
commit38593df6bb457fc3940fcef1d93976cd56b0a2d0 (patch)
tree58fbc11815b2fe7619d1234388877ebc0763afa6 /config/init-nix.el
parenti want the eglot buffer to debug stuff (diff)
downloademacs.d-38593df6bb457fc3940fcef1d93976cd56b0a2d0.tar.gz
massive cleanup
Diffstat (limited to 'config/init-nix.el')
-rw-r--r--config/init-nix.el19
1 files changed, 0 insertions, 19 deletions
diff --git a/config/init-nix.el b/config/init-nix.el
deleted file mode 100644
index d0e50c7..0000000
--- a/config/init-nix.el
+++ /dev/null
@@ -1,19 +0,0 @@
-;;; init-nix.el --- Configure nix -*- lexical-binding: t -*-
-;; Author: Franck Cuny <franck@fcuny.net>
-
-;;; Commentary:
-
-;; All nix related things
-
-;;; Code:
-
-(use-package nix-mode
-  :ensure t
-  :hook ((nix-mode . eglot-ensure)
-         (nix-mode . (lambda () (add-hook 'before-save-hook 'eglot-format-buffer nil t))))
-  :custom
-  (nix-indent-function 'nix-indent-line))
-
-(provide 'init-nix)
-
-;;; init-nix.el ends here