summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/system-defaults.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/system-defaults.el b/modules/system-defaults.el
index b7af439b..75de326e 100644
--- a/modules/system-defaults.el
+++ b/modules/system-defaults.el
@@ -192,5 +192,11 @@
(when (daemonp)
(exec-path-from-shell-initialize)))
+;; ------------------------------- GNU Ls On BSD -------------------------------
+;; when on BSD use the ls from FSF sysutils/coreutils: pkg install coreutils
+
+(cond ((eq system-type 'berkeley-unix)
+ (setq insert-directory-program "/usr/local/bin/gls")))
+
(provide 'system-defaults)
;;; system-defaults.el ends here