diff options
| author | Somelauw <Somelauw> | 2017-05-05 14:30:27 +0200 |
|---|---|---|
| committer | Somelauw <Somelauw> | 2017-05-05 14:30:27 +0200 |
| commit | c20637296efa77bbe72387b94a930b00e6d64405 (patch) | |
| tree | 72de5aa23d54269d22034c10337177008cc1bc53 /README.org | |
| parent | 2adc6b3fa0422bd4d6afcfc383abe31f0fa6de38 (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.org | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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]]. |
