about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org10
1 files changed, 9 insertions, 1 deletions
diff --git a/config.org b/config.org index 2fcba97..1a757ce 100644 --- a/config.org +++ b/config.org
@@ -299,9 +299,17 @@ This doesn't happen often, but I'll be ready when it does.
299 299
300I hide all minor-modes by default for a clean modeline. However, I can add them back by adding them to the whitelist with ~(add-to-list 'rm-whitelist " REGEX")~. 300I hide all minor-modes by default for a clean modeline. However, I can add them back by adding them to the whitelist with ~(add-to-list 'rm-whitelist " REGEX")~.
301#+BEGIN_SRC emacs-lisp 301#+BEGIN_SRC emacs-lisp
302 (defun rm-whitelist-add (regexp)
303 "Add a regexp to the whitelist."
304 (setq rm-whitelist
305 (mapconcat 'identity rm--whitelist-regexps "\\|")))
306
307 (setq rm--whitelist-regexps '("^$"))
308
302 (use-package rich-minority 309 (use-package rich-minority
303 :custom 310 :custom
304 (rm-whitelist '("^$"))) 311 (rm-whitelist
312 (mapconcat 'identity rm--whitelist-regexps "\\|")))
305#+END_SRC 313#+END_SRC
306** Fonts 314** Fonts
307I'm sure there's a better way to do this, but for now, this is the best I've got. I append to the ~face-font-family-alternatives~ because I don't know what kind of weird magic they're doing in there. 315I'm sure there's a better way to do this, but for now, this is the best I've got. I append to the ~face-font-family-alternatives~ because I don't know what kind of weird magic they're doing in there.