diff options
author | bd <bdunahu@operationnull.com> | 2024-06-20 00:04:30 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-06-20 00:04:30 -0600 |
commit | 46f4abcd82989c330b7fc8b7f63a90eb0d7c0704 (patch) | |
tree | a37e661287dced5c986a2b82dae491d24bcfc6b6 /.config/emacs | |
parent | ef625f040941b5e6028afcce9d196943f87bee63 (diff) |
Autostart eshell, make tabs match dwm bar
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/modules/bd--essentials.el | 7 | ||||
-rw-r--r-- | .config/emacs/modules/bd--tabs.el | 7 | ||||
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 5 |
3 files changed, 14 insertions, 5 deletions
diff --git a/.config/emacs/modules/bd--essentials.el b/.config/emacs/modules/bd--essentials.el index 07c1e12..5c70483 100644 --- a/.config/emacs/modules/bd--essentials.el +++ b/.config/emacs/modules/bd--essentials.el @@ -13,7 +13,10 @@ ;;;; UI -(setopt inhibit-startup-message t) +(setopt inhibit-startup-message t + initial-major-mode 'eshell-mode + initial-scratch-message nil) +(tooltip-mode -1) (defun pulse-line (&rest _) "Pulse the current line." @@ -26,7 +29,7 @@ ;;;; insecure passwording (use-package pinentry - :init + :config (pinentry-start) :custom (pinentry-popup-prompt-window nil)) diff --git a/.config/emacs/modules/bd--tabs.el b/.config/emacs/modules/bd--tabs.el index c95768b..3f627b7 100644 --- a/.config/emacs/modules/bd--tabs.el +++ b/.config/emacs/modules/bd--tabs.el @@ -11,10 +11,13 @@ ;;;; remove useless gui elements (setopt tab-bar-format '(tab-bar-format-tabs) - tab-bar-close-button-show nil) + tab-bar-close-button-show nil + + ;; size + tab-bar-auto-width-max nil) ;;;; add useless text elements -(setopt tab-bar-tab-hints t +(setopt tab-bar-tab-hints nil tab-bar-select-tab-modifiers '(meta)) diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index 2db2e70..82ee86a 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -51,7 +51,10 @@ to.") '((bg-mode-line bg-main) (fg-mode-line fg-main) (bg-dim bg-main) - (bg-alt bg-main))) + (bg-alt bg-main) + (bg-tab-bar bg-main) + (bg-tab-current bg-main) + (bg-tab-other bg-inactive))) (ef-winter-palette-overrides '((bg-main "#000000"))) (ef-bio-palette-overrides |