diff options
author | Guangxiong Lin <[email protected]> | 2022-03-13 01:49:19 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-03-13 01:49:19 +0800 |
commit | 12c44f9236cc5d44385f7036aacb95a193c56974 (patch) | |
tree | 865ebaa1cfdad03415608813a5d32623f95bc576 /.emacs.d/lisp | |
parent | b6a3c645324541b05f9c1e8c1588d3e45a67ad47 (diff) | |
download | dotfiles-12c44f9236cc5d44385f7036aacb95a193c56974.tar.gz dotfiles-12c44f9236cc5d44385f7036aacb95a193c56974.tar.bz2 dotfiles-12c44f9236cc5d44385f7036aacb95a193c56974.zip |
Load evil-org in org-agenda (emacs)
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-org.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el index 14ac3d8..591f8b1 100644 --- a/.emacs.d/lisp/init-org.el +++ b/.emacs.d/lisp/init-org.el @@ -156,6 +156,7 @@ ;; evil (when (gx/maybe-require-package 'evil-org) (add-hook 'org-mode-hook 'evil-org-mode) + (add-hook 'org-agenda-mode-hook 'evil-org-mode) (add-hook 'evil-org-mode-hook (lambda () (setq evil-want-C-i-jump nil)))) |