summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorSomelauw <Somelauw>2017-05-05 14:30:27 +0200
committerSomelauw <Somelauw>2017-05-05 14:30:27 +0200
commitc20637296efa77bbe72387b94a930b00e6d64405 (patch)
tree72de5aa23d54269d22034c10337177008cc1bc53 /README.org
parent2adc6b3fa0422bd4d6afcfc383abe31f0fa6de38 (diff)
Make argument to evil-org-set-key-theme optional
If called with no arguments, evil-org-key-theme is used
Diffstat (limited to 'README.org')
-rw-r--r--README.org7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.org b/README.org
index 8758e18..349d9b1 100644
--- a/README.org
+++ b/README.org
@@ -52,7 +52,12 @@ This is an extended and actively maintained version of https://github.com/edwtjo
(add-to-list 'load-path "~/.emacs.d/plugins/evil-org")
(require 'evil-org)
(add-hook 'org-mode-hook 'evil-org-mode)
- (setq evil-org-key-theme '(navigation insert textobjects additional))
+ (evil-org-set-key-theme '(navigation insert textobjects additional))
+ #+END_SRC
+
+ Or you can customize =evil-org-key-theme= and replace the last line by:
+ #+BEGIN_SRC emacs-lisp
+ (evil-org-set-key-theme)
#+END_SRC
For a more elaborate setup, take a look at [[file:doc/example_config.el][this example]].