diff options
author | bd <bdunahu@operationnull.com> | 2024-07-19 20:29:45 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-07-19 20:29:45 -0600 |
commit | 4e11e4d3ce45a3e76a07d966909c2cb5cb6479b1 (patch) | |
tree | 420a5bbffee12c464eac1b7c52ce67ef28b34830 /.config/emacs/modules/bd--shells.el | |
parent | 527c88c67c15a33f58ac5e59bb878092bf94dd8c (diff) |
Cleanup unnecessary emacs packages
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")))) |