system changes
This commit is contained in:
parent
0a6b222050
commit
aa49605c34
2 changed files with 5 additions and 5 deletions
|
@ -104,11 +104,10 @@ Install and configure =visual-fill-column= to make some file types display with
|
|||
|
||||
Make Emacs use the correct =PATH= variable as macOS fails to load the =PATH= variable from my login shell.
|
||||
#+begin_src emacs-lisp
|
||||
(let ((path-from-shell (replace-regexp-in-string
|
||||
"[ \t\n]*$" "" (shell-command-to-string
|
||||
"$SHELL --login -c 'echo $PATH'"))))
|
||||
(setenv "PATH" path-from-shell)
|
||||
(setq exec-path (split-string path-from-shell path-separator)))
|
||||
(use-package exec-path-from-shell
|
||||
:init
|
||||
(when (memq window-system '(mac ns x))
|
||||
(exec-path-from-shell-initialize)))
|
||||
#+end_src
|
||||
|
||||
I hate macOS scroll inertia. Scrolling in one window, switching to Emacs, and hitting control occasionally changes the text size and can even cause Emacs (and my window manager for some reason) to hang forcing me to force quit Emacs.
|
||||
|
|
|
@ -53,6 +53,7 @@ Set up Homebrew. I disable the quarantine automatically and ensure that the stat
|
|||
"poppler"
|
||||
|
||||
# required by emacs-plus@30
|
||||
"gcc"
|
||||
"imagemagick"
|
||||
"jansson"
|
||||
"jpeg"
|
||||
|
|
Loading…
Add table
Reference in a new issue