diff options
author | bd <bdunahu@colostate.edu> | 2024-01-16 21:58:02 -0700 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-01-16 21:58:02 -0700 |
commit | 60a4f70cf9fc0a67e00db3c135d3a6d0889ff3c6 (patch) | |
tree | de44973c80110703f35d27a7f004da45c5477516 /.config | |
parent | d55304134b9786ab7ee48f373677ebb0bddb7fa4 (diff) |
Changes to fringe, modeline box.
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index abf9887..9321e15 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -1,16 +1,20 @@ ;; -*- lexical-binding: t; -*- +;; no fringe +(fringe-mode '(0 . 0)) + (defun modus-themes-custom-faces () (modus-themes-with-colors (custom-set-faces - `(vertical-border ((,class :background ,bg-main - :foreground ,bg-main))) + `(vertical-border ((,class :foreground ,bg-inactive))) `(mode-line-inactive ((,class :background ,bg-main - :foreground ,fg-active))) + :foreground ,fg-active + :box ,bg-dim))) `(mode-line-active ((,class :background ,bg-main - :foreground ,fg-active))) + :foreground ,fg-active + :box ,bg-inactive))) `(hl-line ((,class :background ,magenta-nuanced-bg))) |