Created
September 15, 2012 19:47
-
-
Save mahata/3729471 to your computer and use it in GitHub Desktop.
eshell-path-env and PATH
This file contains 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
(defun eshell-mode-hook-func () | |
(setq eshell-path-env (concat "/usr/local/bin:" eshell-path-env)) | |
(setenv "PATH" (concat "/usr/local/bin:" (getenv "PATH"))) | |
(define-key eshell-mode-map (kbd "M-s") 'other-window-or-split)) | |
(add-hook 'eshell-mode-hook 'eshell-mode-hook-func) |
Thanks! 😄
Constructive critique:
- A small description of what this does would be great for those that don't read elisp.
- Adding the paths for root user would be nice
Thanks!
Thanks, it's helpful.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice, exactly what I was looking for. Thanks!