summaryrefslogtreecommitdiff
path: root/.config/emacs/bd-shells.el
diff options
context:
space:
mode:
authorbd <bdunahu@gmail.com>2024-01-06 03:06:58 -0700
committerbd <bdunahu@gmail.com>2024-01-06 03:06:58 -0700
commitda5922a476cebdbbf338f0192165dbbbcd3f7b6f (patch)
tree4f0f45b0c34a0f60159d63aa8b0990d710a5de0d /.config/emacs/bd-shells.el
parent5b514f3b33197355e55cd1478fa50dd1cc92c340 (diff)
eww quality-of-life, handle videos
Diffstat (limited to '.config/emacs/bd-shells.el')
-rw-r--r--.config/emacs/bd-shells.el11
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 "^> ")