about summary refs log tree commit diff
path: root/emacs.d/init-eshell.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/init-eshell.el')
-rw-r--r--emacs.d/init-eshell.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/emacs.d/init-eshell.el b/emacs.d/init-eshell.el
index 18543f80a7a0..4a520c3a86f2 100644
--- a/emacs.d/init-eshell.el
+++ b/emacs.d/init-eshell.el
@@ -2,6 +2,10 @@
 
 (require 'eshell)
 
+;; Generic settings
+;; Hide banner message ...
+(setq eshell-banner-message "")
+
 (defvar home-dir)
 (setq home-dir (expand-file-name "~"))
 
@@ -11,6 +15,7 @@
   (setq eshell-path-env (concat
 			 "/usr/local/bin:"
 			 (concat home-dir "/bin:")
+			 "/usr/local/share/python"
 			 eshell-path-env))
 
   (setenv "PATH" eshell-path-env))
@@ -78,7 +83,8 @@
      (require 'em-cmpl)
      ;; More visual commands!
      (add-to-list 'eshell-visual-commands "ssh")
-     (add-to-list 'eshell-visual-commands "tail")))
+     (add-to-list 'eshell-visual-commands "tail")
+     (add-to-list 'eshell-visual-commands "sl")))
 
 (setq eshell-directory-name "~/.config/eshell/")