aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-06-28 00:26:47 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-06-28 00:26:47 +0100
commitd9863a069af358aa6d129684f1904eb99a296451 (patch)
treeb53d6a3543d5a767096cd83280457652d3c216d2
parent49580df21964c192e1b8cf39fe306e952649938b (diff)
downloaddotfiles-d9863a069af358aa6d129684f1904eb99a296451.tar.gz
dotfiles-d9863a069af358aa6d129684f1904eb99a296451.tar.bz2
dotfiles-d9863a069af358aa6d129684f1904eb99a296451.zip
(Emacs/elisp)~eshell-prompt for git changes
-rw-r--r--Emacs/.config/emacs/elisp/eshell-prompt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/elisp/eshell-prompt.el b/Emacs/.config/emacs/elisp/eshell-prompt.el
index 8c156b8..483f097 100644
--- a/Emacs/.config/emacs/elisp/eshell-prompt.el
+++ b/Emacs/.config/emacs/elisp/eshell-prompt.el
@@ -54,9 +54,9 @@ behind or ahead the local repository is."
(concat
(cond
((string= status "ahead")
- (propertize "→ " 'font-lock-face '(:foreground "dodger blue")))
+ (propertize "→" 'font-lock-face '(:foreground "dodger blue")))
((string= status "behind")
- (propertize "← " 'font-lock-face '(:foreground "orange red"))))
+ (propertize "←" 'font-lock-face '(:foreground "orange red"))))
n)))))
(defun +eshell-prompt/--git-change-status ()