diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-07-29T16·44+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-07-29T16·44+0200 |
commit | cae07c88fd5ebb26caf78c37c560855b12cb8268 (patch) | |
tree | 894bb97a8a075bb418fafc8f11d8c29ad05371da | |
parent | cdffc846bbc81a8bbf976a46321898fdd7073c17 (diff) |
emacs: Disabled EShell banner message, amended PATH
fish: Amended PATH
-rw-r--r-- | emacs.d/init-eshell.el | 8 | ||||
-rw-r--r-- | fish/config.fish | 2 |
2 files changed, 8 insertions, 2 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/") diff --git a/fish/config.fish b/fish/config.fish index 40a4e809da92..1fdeb0e92f63 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -20,4 +20,4 @@ set -gx VISUAL emacsclient set fish_greeting "" -set PATH /usr/local/bin ~/Library/Haskell/bin ~/bin/ /Users/vincent/Source/management-scripts/google-apps/ $PATH +set PATH /usr/local/share/python /usr/local/bin ~/Library/Haskell/bin ~/bin/ /Users/vincent/Source/management-scripts/google-apps/ $PATH |