diff options
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/emacs.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/user/settings/emacs.nix b/user/settings/emacs.nix index 6111e581..70a19554 100644 --- a/user/settings/emacs.nix +++ b/user/settings/emacs.nix @@ -162,6 +162,10 @@ in (with-eval-after-load 'editorconfig (setq editorconfig-exec-path "${pkgs.editorconfig-core-c}/bin/editorconfig")) '' + lib.optionalString stdenv.isDarwin '' + (with-eval-after-load 'files + (setq insert-directory-program "${pkgs.coreutils-prefixed}/bin/gls")) + (with-eval-after-load 'dired + (setq dired-use-ls-dired t)) (setq exec-path (parse-colon-path (setenv "PATH" "${pkgs.lib.readFile darwinPath}"))) ''; }; |