diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-06-21 12:20:43 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-06-21 12:20:43 -0700 |
commit | 2b81ec27a87f92d3c8bd4e90a3ffe3bb29e5bdcb (patch) | |
tree | 1cbd9201e93343df661666370253a008aed2225f | |
parent | [emacs] font size... (diff) | |
download | emacs.d-2b81ec27a87f92d3c8bd4e90a3ffe3bb29e5bdcb.tar.gz |
[emacs] fix arguments for calling ls
I switched to macport, and I don't have GNU ls anymore.
-rw-r--r-- | emacs.d/custom/fcuny-navigation.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 |