From 2b81ec27a87f92d3c8bd4e90a3ffe3bb29e5bdcb Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 21 Jun 2019 12:20:43 -0700 Subject: [emacs] fix arguments for calling ls I switched to macport, and I don't have GNU ls anymore. --- emacs.d/custom/fcuny-navigation.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'emacs.d/custom') diff --git a/emacs.d/custom/fcuny-navigation.el b/emacs.d/custom/fcuny-navigation.el index 7671231..f0be803 100644 --- a/emacs.d/custom/fcuny-navigation.el +++ b/emacs.d/custom/fcuny-navigation.el @@ -49,11 +49,11 @@ ("C-x C-j" . dired-jump)) :init (setq-default dired-dwim-target t) - (setq-default dired-listing-switches "--group-directories-first -alh") + (setq-default dired-listing-switches "-alh") (setq dired-recursive-deletes 'always) (setq dired-recursive-copies 'always) - (let ((gls (executable-find "/opt/twitter/bin/gls"))) + (let ((gls (executable-find "/bin/ls"))) (when gls (setq insert-directory-program gls)))) (use-package dired-x -- cgit 1.4.1