branch: externals/doric-themes commit b00a309229b4da2618cb98f57886dae87317f282 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Clarify the sample configuration --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 74d69138ef..b4804a5874 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,22 @@ package. For something in-between, which I would consider the best ## Sample configuration ```elisp +;; I will update this once the actual package is available. For now, +;; you have to clone the Git repository somewhere, then specify that +;; in the `:load-path' below. (use-package doric-themes + :ensure nil + :demand t + :load-path "~/Git/Projects/doric-themes/" :config ;; These are the default values. (setq doric-themes-to-toggle '(doric-light doric-dark)) (setq doric-themes-to-rotate doric-themes-collection) + + (doric-themes-select 'doric-light) :bind (("<f5>" . doric-themes-toggle) - ("C-<f5>" . doric-themes-rotate))) + ("C-<f5>" . doric-themes-select) + ("M-<f5>" . doric-themes-rotate))) ```