Commit cef54d692855

Vincent Demeester <vincent@sbr.pm>
2025-05-09 23:35:31
tools/emacs: small fixes
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent ab0166e
Changed files (2)
tools/emacs/config/config-org.el
@@ -188,7 +188,7 @@
 	    (->>
 	     (directory-files org-notes-directory nil ".org$")
 	     (--remove (s-starts-with? "." it))
-	     (--map (format "%s/%s" org-note-sdirectory it))
+	     (--map (format "%s/%s" org-notes-directory it))
 	     (--map `(,it :maxlevel . 3)))
 	    (->>
 	     (directory-files-recursively org-people-dir ".org$")
tools/emacs/config/programming-nix.el
@@ -19,8 +19,8 @@
 (use-package nixpkgs-fmt
   :if (executable-find "nix")
   :after nix-ts-mode
-  :custom
-  (nixpkgs-fmt-command = "nixfmt")
+  ;; :custom
+  ;; (nixpkgs-fmt-command "nixfmt")
   :config
   (add-hook 'nix-ts-mode-hook 'nixpkgs-fmt-on-save-mode))