summaryrefslogtreecommitdiff
path: root/emacs/custom
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/my-eshell.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/emacs/custom/my-eshell.el b/emacs/custom/my-eshell.el
index f382241..3ab2475 100644
--- a/emacs/custom/my-eshell.el
+++ b/emacs/custom/my-eshell.el
@@ -97,12 +97,7 @@ append to it, while separating multiple outputs with
(defun my/prompt ()
"EShell prompt displaying VC info and such."
- (concat
- (with-face (concat (my/short-pwd (eshell/pwd)) " ") :foreground "#070707")
- (if (= 0 (user-uid))
- (with-face "#" :foreground "#f43841")
- (with-face "λ" :foreground "#63c904"))
- (with-face " " :foreground "#000000")))
+ (concat (my/short-pwd (eshell/pwd)) (with-face " λ " :foreground "#63c904")))
(define-key eshell-mode-map (kbd "C-c e e") 'my/eshell-export)