From aa1b8c8adf276762da5cb52d9ba0bd0d5374a839 Mon Sep 17 00:00:00 2001 From: Felix Crux Date: Sun, 6 May 2018 07:51:07 -0400 Subject: [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. --- README.md | 10 +++++----- 1 file 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) ``` -- cgit v1.2.3