summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorAmin Bandali <bandali@kelar.org>2022-05-07 16:17:16 -0400
committerAmin Bandali <bandali@kelar.org>2022-05-19 22:20:02 -0400
commit8ea6de120f0b940cd51bc0331d88d4f9e508b459 (patch)
tree63995af44c7dfd77314b37ff5b7b4f044439389f /.emacs.d/init.el
parent966011a81f3d7e86dd8cb8b39854a911a3bf5e61 (diff)
downloadconfigs-8ea6de120f0b940cd51bc0331d88d4f9e508b459.tar.gz
configs-8ea6de120f0b940cd51bc0331d88d4f9e508b459.tar.xz
configs-8ea6de120f0b940cd51bc0331d88d4f9e508b459.zip
* .emacs.d/init.el: No, I don't want a variable-pitched non-monospaced mode-line.
Though this seems to have thankfully been reversed again upstream in 2001ae5898a1e48cae5b138828190ac2cba39b40, I'm keeping this in my init file for now.
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 6169072..5894ed5 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -463,9 +463,11 @@ This sets each user option VAR's value to the corresponding VALUE.
;; `(;; :line-width -1
;; :style released-button))
)
+ ;; (set-face-attribute 'fixed-pitch nil :family "Source Code Pro")
+ (set-face-attribute 'fixed-pitch nil :family "Inconsolata")
(set-face-attribute 'mode-line nil
:background grey ;; :box box
- )
+ :inherit 'fixed-pitch)
;; (set-face-attribute 'mode-line-inactive nil
;; :background darker-grey :box box)
)))