Created
November 23, 2012 12:09
-
-
Save tagrudev/4135344 to your computer and use it in GitHub Desktop.
Loads ZSH PATH env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; sets zsh path | |
(let ((path (shell-command-to-string ". ~/.zshrc; echo -n $PATH"))) | |
(setenv "PATH" path) | |
(setq exec-path | |
(append | |
(split-string-and-unquote path ":") | |
exec-path))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment