Add Homebrew bin path on Mac to emacs $PATH
Homebrew likes to install things in /usr/local/bin
so if you want to call commands from Emacs add the following to $HOME/.emacs.d/init.el
:
(setenv "PATH" (concat "/usr/local/bin:" (getenv "PATH")))
Homebrew likes to install things in /usr/local/bin
so if you want to call commands from Emacs add the following to $HOME/.emacs.d/init.el
:
(setenv "PATH" (concat "/usr/local/bin:" (getenv "PATH")))