summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-12-18 15:57:29 -0500
committerKyle Meyer <kyle@kyleam.com>2017-01-16 18:51:35 -0500
commit1b20214c4a3063fc68f8bfd8523bc0640f7d42c8 (patch)
treefad78f7f9ba8208a06fc678f3aeb8c014f30c664
parentc4aa1ef540bc36110b607585594b168a482ed870 (diff)
downloademacs.d-1b20214c4a3063fc68f8bfd8523bc0640f7d42c8.tar.gz
org: Consistently use "v" for capture
Gnus and elfeed are already using "v", so I want to use "v" rather than "k" in the agenda. At which point, everything is "v", so I'll just switch the global binding to that as well.
-rw-r--r--init.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/init.el b/init.el
index 0c635c9..03bc724 100644
--- a/init.el
+++ b/init.el
@@ -210,7 +210,7 @@
(use-package org-capture
:defer t
- :init (define-key km/global-org-map "c" #'org-capture)
+ :init (define-key km/global-org-map "v" #'org-capture)
:config
(setq org-capture-templates
'(("t" "task" entry (file+headline "~/notes/tasks.org" "Inbox")
@@ -276,7 +276,10 @@
("C-c C-w" . km/org-agenda-refile-dwim)
("C-o" . org-agenda-show-and-scroll-up)
;; Free up 'j' for `km/org-agenda-avy-goto-subword-1'.
- ("C-j" . org-agenda-goto-date)))
+ ("C-j" . org-agenda-goto-date)
+ ("d" . org-agenda-view-mode-dispatch)
+ ("k" . nil)
+ ("v" . org-agenda-capture)))
(use-package org-contacts
:defer t