Skip to content

Instantly share code, notes, and snippets.

@cyborgmarina
Forked from mahata/eshell-path-env.el
Created June 28, 2017 20:42
Show Gist options
  • Save cyborgmarina/4920e591c8728a4f68fb016771f097ec to your computer and use it in GitHub Desktop.
Save cyborgmarina/4920e591c8728a4f68fb016771f097ec to your computer and use it in GitHub Desktop.
eshell-path-env and PATH
(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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment