all repos — nixfiles @ 08aea4ba64f3a076b51c9da88be619aa96fa90a4

System and user configuration, managed by nix and home-manager

Emacs: Only use GNU ls on OSX when found

Alan Pearce
commit

08aea4ba64f3a076b51c9da88be619aa96fa90a4

parent

486fd3e770609985b16503b531b6ab10cfa1ff40

1 file changed, 1 insertion(+), 1 deletion(-)

jump to
M tag-emacs/emacs.d/init.eltag-emacs/emacs.d/init.el
@@ -219,7 +219,7 @@ (setq dired-dwim-target t
dired-recursive-copies 'top dired-recursive-deletes 'top dired-bind-jump nil) - (when (eq system-type 'darwin) + (when (and (eq system-type 'darwin) (executable-find "gls")) (setq insert-directory-program "/usr/local/bin/gls")) (put 'dired-find-alternate-file 'disabled nil)))