summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2021-05-18 18:54:06 -0400
committerAmin Bandali <bandali@gnu.org>2021-05-18 18:54:06 -0400
commitc6e4b014cb53f028da64232b28053d48014ab12b (patch)
treee507c91ace5d74bd896b9a9e4bfce7b36d818116 /.emacs.d/init.el
parent230f7fe8f57e39c012ce187fc82fb2ac8c6d4dae (diff)
downloadconfigs-c6e4b014cb53f028da64232b28053d48014ab12b.tar.gz
configs-c6e4b014cb53f028da64232b28053d48014ab12b.tar.xz
configs-c6e4b014cb53f028da64232b28053d48014ab12b.zip
emacs: tweak mode-line look
Diffstat (limited to '')
-rw-r--r--.emacs.d/init.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 9f645a3..781b7f0 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -451,12 +451,13 @@ This sets each user option VAR's value to the corresponding VALUE.
(with-eval-after-load 'faces
(let* ((grey "#e7e7e7")
(darker-grey "#d9d9d9")
- (box ;; `(:line-width -1 :style released-button)
- 'unspecified))
+ (box ;; 'unspecified
+ `(:line-width -1 :style released-button)))
(set-face-attribute 'mode-line nil
:background grey :box box)
- (set-face-attribute 'mode-line-inactive nil
- :background darker-grey :box box))))
+ ;; (set-face-attribute 'mode-line-inactive nil
+ ;; :background darker-grey :box box)
+ )))
;;; Useful utilities