diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-27 12:33:34 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-27 12:33:34 -0500 |
commit | 3cd8032ad5df27e023872828fa97d588e706627b (patch) | |
tree | 1b30306081523a4177c8caff1c2eb18c57db14ea | |
parent | 408330027b47c21acc9717c9e01d9ffa438cbbba (diff) | |
download | configs-3cd8032ad5df27e023872828fa97d588e706627b.tar.gz configs-3cd8032ad5df27e023872828fa97d588e706627b.tar.xz configs-3cd8032ad5df27e023872828fa97d588e706627b.zip |
[emacs/eshell] tweak prompt face
-rw-r--r-- | init.org | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2086,9 +2086,10 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. (propertize (+eshell--current-git-branch) 'face 'font-lock-function-name-face) "\n" - (propertize "λ" 'face 'eshell-prompt-face) + ;; "λ" + ;; (propertize "λ" 'face 'eshell-prompt) ;; needed for the input text to not have prompt face - (propertize " " 'face 'default)))) + (propertize "λ " 'face 'default)))) (defun +eshell--current-git-branch () (let ((branch (car (loop for match in (split-string (shell-command-to-string "git branch") "\n") |