branch: externals/rich-minority
commit 3201f6e1769beb9f6cbbda392bef99fce337acf4
Author: Artur Malabarba <[email protected]>
Commit: Artur Malabarba <[email protected]>
Shorten readme a bit
---
README.org | 21 +++------------------
1 file changed, 3 insertions(+), 18 deletions(-)
diff --git a/README.org b/README.org
index 5d8b522..4e89bea 100644
--- a/README.org
+++ b/README.org
@@ -24,24 +24,9 @@ three variables:
#+begin_src emacs-lisp
(setq rm-blacklist
(format "^ \\(%s\\)$"
- (mapconcat #'identity
- '("Fly.*"
- "Projectile.*"
- "my-keys-mode"
- "PgLn"
- "company"
- "Undo-Tree")
- "\\|")))
-#+end_src
- If for some reason all minor modes are not hidden when rich-minority
- is activated, try the following:
-#+begin_src emacs-lisp
-;; Blacklist all minor modes
-(setq rm-blacklist
- (format "^ \\(%s\\)$"
- (mapconcat #'identity
- '(".*")
- "\\|")))
+ (mapconcat #'identity
+ '("Fly.*" "Projectile.*" "PgLn")
+ "\\|")))
#+end_src
- ~rm-whitelist~ :: List of minor mode names that are allowed on
the minor-modes list. Use this to hide *all but* a few modes.