Commit cef54d692855
Changed files (2)
tools
emacs
config
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))