branch: elpa/evil-goggles
commit b620c7512c69ffaffe6088703a4530f1cb5f6fba
Author: Evgeni Kolev <[email protected]>
Commit: Evgeni Kolev <[email protected]>
Update README
---
README.md | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index f69199e6ce..5774a97483 100644
--- a/README.md
+++ b/README.md
@@ -79,20 +79,21 @@ try for example `yy`, `p`, `dd` in normal state.
#### Appearance Customization
-By default, all goggles' faces inherit `evil-goggles-default-face`, which in
turn inherits emacs' `region` face.
+- To pulse the visual hint, rather than just show and hide it:
+
+``` emacs-lisp
+(setq evil-goggles-pulse t)
+```
- To change the default face:
+
```emacs-lisp
(custom-set-faces
'(evil-goggles-default-face ((t (:inherit 'highlight))))) ;; default is to
inherit 'region
;; run `M-x list-faces-display` in a fresh emacs to get a list of faces on
your emacs
```
-- To pulse the visual hint, rather than just show and hide it:
-
-``` emacs-lisp
-(setq evil-goggles-pulse t)
-```
+By default, all goggles' faces inherit `evil-goggles-default-face`, which in
turn inherits emacs' `region` face.
- To use different faces per edit action:
```emacs-lisp