Skip to content

Instantly share code, notes, and snippets.

@mahata
Created September 15, 2012 19:47
Show Gist options
  • Select an option

  • Save mahata/3729471 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

Nice, exactly what I was looking for. Thanks!

@skitapa
Copy link
Copy Markdown

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
Copy Markdown

Kirth commented May 23, 2019

Thanks!

@xzhong86
Copy link
Copy Markdown

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