From 4e11e4d3ce45a3e76a07d966909c2cb5cb6479b1 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 19 Jul 2024 20:29:45 -0600 Subject: Cleanup unnecessary emacs packages --- .config/emacs/modules/bd--shells.el | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to '.config/emacs/modules/bd--shells.el') 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")))) -- cgit v1.2.3