diff options
Diffstat (limited to '.config/emacs/bd-shells.el')
-rw-r--r-- | .config/emacs/bd-shells.el | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.config/emacs/bd-shells.el b/.config/emacs/bd-shells.el index 4574cc6..4054e5d 100644 --- a/.config/emacs/bd-shells.el +++ b/.config/emacs/bd-shells.el @@ -21,23 +21,20 @@ status, and path." (concat "\n" (propertize (system-name) 'face `(:foreground "#edb54b")) - (when current-branch - (concat - (format " %s " (all-the-icons-octicon "git-branch")) - (propertize current-branch 'face `(:foreground "#98d1ce")))) + ;; (when current-branch + ;; (concat + ;; (format " %s " (all-the-icons-octicon "git-branch")) + ;; (propertize current-branch 'face `(:foreground "#98d1ce")))) (format " %s " (all-the-icons-fileicon "gn")) (propertize (bd/get-prompt-path) 'face `(:foreground "#33859d")) (propertize (format-time-string " %a, %R") 'face `(:foreground "#888ba5")) (propertize "\n> " 'face `(:foreground "#c33027"))))) (use-package eshell - :demand :bind (("C-z C-e" . 'eshell-open-buffer) :map eshell-mode-map ("C-q" . 'delete-window) ; mostly for side window ("<tab>" . completion-at-point)) - :config - ;; (eshell/addpath "~/Personal/scripts/") :custom (eshell-prompt-function 'bd/eshell-prompt) (eshell-prompt-regexp "^> ") |