diff options
Diffstat (limited to '.config/emacs/modules/bd--shells.el')
-rw-r--r-- | .config/emacs/modules/bd--shells.el | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.config/emacs/modules/bd--shells.el b/.config/emacs/modules/bd--shells.el index 49518bf..b343e8e 100644 --- a/.config/emacs/modules/bd--shells.el +++ b/.config/emacs/modules/bd--shells.el @@ -3,9 +3,6 @@ ;;; Code: -(require 'all-the-icons) - - ;;;; term (with-eval-after-load "term" (defalias 'term 'ansi-term)) @@ -28,13 +25,11 @@ (abbreviate-file-name (eshell/pwd))) (defun bd/eshell-prompt () - "Assemble a shell prompt including host, git -status, and path." + "Return a prettified shell prompt." (concat "\n" (propertize (system-name) 'face `(:foreground "#edb54b")) - (format " %s " (all-the-icons-fileicon "gn")) - (propertize (bd/get-prompt-path) 'face `(:foreground "#33859d")) + (propertize (format " %s" (bd/get-prompt-path)) 'face `(:foreground "#33859d")) (propertize (format-time-string " %a, %R") 'face `(:foreground "#888ba5")) (propertize "\n> " 'face `(:foreground "#c33027")))) |