summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-06-21 12:20:43 -0700
committerFranck Cuny <fcuny@twitter.com>2019-06-21 12:20:43 -0700
commit2b81ec27a87f92d3c8bd4e90a3ffe3bb29e5bdcb (patch)
tree1cbd9201e93343df661666370253a008aed2225f /emacs.d
parent[emacs] font size... (diff)
downloademacs.d-2b81ec27a87f92d3c8bd4e90a3ffe3bb29e5bdcb.tar.gz
[emacs] fix arguments for calling ls
I switched to macport, and I don't have GNU ls anymore.
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/custom/fcuny-navigation.el4
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