Emacs: Configure multi-line eshell prompt
Alan Pearce alan@alanpearce.uk
Sun, 05 Mar 2017 16:39:02 +0100
1 files changed, 5 insertions(+), 1 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -2185,7 +2185,11 @@ #+BEGIN_SRC emacs-lisp (use-package eshell :bind ("C-c s" . eshell) :config (progn - (setq eshell-directory-name "~/.emacs.d/eshell") + (setq eshell-directory-name "~/.emacs.d/eshell" + eshell-prompt-function (lambda () + (concat + (eshell/pwd) + "\n$ "))) (add-hook 'eshell-load-hook (lambda () (bind-key "C-c C-l" #'counsel-esh-history eshell-mode-map)))))