Skip to content

Instantly share code, notes, and snippets.

@tagrudev
Created November 23, 2012 12:09
Show Gist options
  • Save tagrudev/4135344 to your computer and use it in GitHub Desktop.
Save tagrudev/4135344 to your computer and use it in GitHub Desktop.
Loads ZSH PATH env
;;; 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