branch: elpa/evil-goggles
commit e95fb4d6b934c11abd66074b08e2bb132dbb52ea
Author: Evgeni Kolev <[email protected]>
Commit: Evgeni Kolev <[email protected]>
Partially revert README
---
README.md | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/README.md b/README.md
index 1b6b9d228b..cea8cedc1e 100644
--- a/README.md
+++ b/README.md
@@ -58,15 +58,10 @@ Installation
Customization
-------------
-- The appearance of the overlay can be configured with `evil-goggles-face`. By
default, inherit from the `region` face and using for every action.
+- The appearance of the overlay can be configured with
`evil-goggles-default-face`. By default, the `region` face is used for every
action. To get a list of available faces on emacs start, start a fresh emacs
and run `M-x list-faces-display`.
```emacs-lisp
-;; If you want to customize only background
-;; You can get a color name with `list-colors-diplay', or use hex value
-(set-face-background 'evil-goggles-face "LightSkyBlue")
-;; Advanced settings can be done with `custom-theme-set-faces'
-(custom-theme-set-faces
- 'zenburn ; Use your theme name
- '(evil-goggles-face ((t (:background "dimgray" :foreground "green" :bold
t)))))
+;; default is 'region, you can try `isearch-fail
+(setq evil-goggles-default-face 'highlight)
```
- To use different faces per edit action:
```emacs-lisp