summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Crux <felixc@felixcrux.com>2018-05-06 07:51:07 -0400
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2018-05-06 06:51:07 -0500
commitaa1b8c8adf276762da5cb52d9ba0bd0d5374a839 (patch)
tree7049cc93cdad5d7ae7ceda1b755afb7f0892a3ae
parentaf752f46306eb710158904b89c1bf0d6786d0a4d (diff)
[Fix #302] Update docs to suggest using customize-set-variable instead of defvar (#306)
In 4b3e541 the colour customization mechanism `zenburn-override-colors-alist`was changed from a `defvar` to a `defcustom`, which means these instructions need updating.
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 9d4fcb5..8d20458 100644
--- a/README.md
+++ b/README.md
@@ -69,11 +69,11 @@ For example, to customize just the lighter background colors, you could add
to your init file:
```elisp
-(defvar zenburn-override-colors-alist
- '(("zenburn-bg+05" . "#282828")
- ("zenburn-bg+1" . "#2F2F2F")
- ("zenburn-bg+2" . "#3F3F3F")
- ("zenburn-bg+3" . "#4F4F4F")))
+(setq zenburn-override-colors-alist
+ '(("zenburn-bg+05" . "#282828")
+ ("zenburn-bg+1" . "#2F2F2F")
+ ("zenburn-bg+2" . "#3F3F3F")
+ ("zenburn-bg+3" . "#4F4F4F")))
(load-theme 'zenburn t)
```