Skip to content

Instantly share code, notes, and snippets.

@mahata
Created September 15, 2012 19:47
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mahata/3729471 to your computer and use it in GitHub Desktop.
Save mahata/3729471 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)
@jtmoulia
Copy link

Nice, exactly what I was looking for. Thanks!

@skitapa
Copy link

skitapa commented May 19, 2015

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

@Kirth
Copy link

Kirth commented May 23, 2019

Thanks!

@xzhong86
Copy link

xzhong86 commented Nov 7, 2019

Thanks, it's helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment