When I launch the emacs GUI, PATH is not set depending on my .zshrc. How do I source my .zshrc to set it correctly?
Edit: I'm trying to use swank-clojure but it can't find lein since it's not on the PATH.
|
This answer is for people who find this question later and are having this problem because of Emacs default behaviour on the Mac, If you are on a Mac and wondering how to get emacs to start from the shell where it will pickup your customized ENV in graphical mode instead of text only then start it from zsh with something like this:
This should cause emacs to see all your shell (zsh or otherwise) customizations. |
|||||||||||
|
|
Here's my workaround for this problem, which doesn't require always starting Emacs from a shell (I am also bothered by this sometimes on my mac):
It sets both Emacs' idea of the |
|||
|
|
|
FWIW, this problem is not specific to Mac OS X, since it also affects GNU/Linux systems, where starting Emacs from the GUI's menu-bar will typically result in an Emacs that does not have the same PATH as one launched from the command-line. This problem dates back to the first `xdm' Xsession scripts, and while they are fairly easy to fix (basically use an Xsessionwrapper script that does "exec $SHELL -c Xsession" so the shell gets run before running the user's Xsession), here we are 20 years later suffering from the same old problem. And somehow I don't expect gdm3 to fix this ;-( |
|||||
|
|
The variable Emacs uses instead of You might try setting |
|||
|
|
|
Mac OS X has a special environment file to allow setting enviroment variables for process launched by a specific user. This allows you to set environment variables for GUI apps. In your case you can use this to set the PATH for any emacs launched by clicking on an icon in dock or finder. This file lives at
You can create the file in XCode, but it's just plain xml so the contents of the file looks like this:
|
||||
|
|
PATHthat is used inshell-modeoreshell? – pmr Feb 24 '12 at 17:34