Guest User

Untitled

a guest
Sep 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. (add-hook 'eshell-mode-hook
  2. '(lambda ()
  3. (progn
  4. (setq eshell-path-env (concat "/usr/local/bin:" eshell-path-env))
  5.  
  6. (define-key eshell-mode-map "\M-s" 'other-window-or-split)
  7.  
  8. (add-to-list 'eshell-command-aliases-list (list "ls" "ls -la"))
  9. (add-to-list 'eshell-command-aliases-list (list "ll" "ls -la"))
  10. )))
Add Comment
Please, Sign In to add comment