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)
@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