File tree Expand file tree Collapse file tree
shared/tools/emacs/config Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -euo pipefail
4+
5+ source " $DOT_HOME /lib/macos/include.sh"
6+
7+ log_step " Installing Emacs dependencies (cmake, libtool)"
8+
9+ FORMULAS=(" cmake" " libtool" )
10+
11+ for formula in " ${FORMULAS[@]} " ; do
12+ if brew_installed " $formula " ; then
13+ log_info " $formula already installed"
14+ else
15+ install_formula " $formula "
16+ fi
17+ done
18+
19+ log_success " Emacs dependencies installed"
Original file line number Diff line number Diff line change @@ -985,6 +985,10 @@ Attaches eglot to every programming language buffer:
985985(with-eval-after-load 'dired
986986 (define-key dired-mode-map (kbd "e") 'eshell))
987987
988+ ;; Use GNU ls from coreutils on macOS
989+ (when (eq system-type 'darwin)
990+ (setq insert-directory-program "/opt/homebrew/bin/gls"))
991+
988992(setq dired-listing-switches "-lah --group-directories-first")
989993#+end_src
990994
You can’t perform that action at this time.
0 commit comments