diff --git a/site-lisp/db-eshell.el b/site-lisp/db-eshell.el index dbafa3d..9f5c524 100644 --- a/site-lisp/db-eshell.el +++ b/site-lisp/db-eshell.el @@ -41,22 +41,22 @@ (defun eshell/default-prompt-function () "A prompt for eshell of the form - ┌[$USER@$HOST] [$PWD] - └── + ┌─[$USER@$HOST] [$PWD] + └─ " (let ((head-face '(:foreground "#859900"))) - (format (concat (propertize "┌" 'face head-face) + (format (concat (propertize "┌─" 'face head-face) "[%s@%s] [%s]\n" - (propertize "└──" 'face head-face) - " ") + (propertize "└─" 'face head-face) + (propertize " " 'face '(:weight bold))) (user-login-name) (system-name) (propertize (abbreviate-file-name (eshell/pwd)) 'face '(:foreground "#dc322f"))))) (setq eshell-prompt-function #'eshell/default-prompt-function - eshell-prompt-regexp "└── " + eshell-prompt-regexp "└─ " eshell-highlight-prompt nil) (add-hook 'eshell-mode-hook