diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-26 14:45:47 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-26 14:45:47 -0800 |
commit | e58d36d76ec5236eb848fc78d0695586d9a38ab6 (patch) | |
tree | 2cc4870413cbc7c7a621c04b0838deece6fda6ac /emacs.d | |
parent | [tmux] small changes to the status line (diff) | |
download | emacs.d-e58d36d76ec5236eb848fc78d0695586d9a38ab6.tar.gz |
[emacs] Add binding for org-agenda.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/core/core-org.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs.d/core/core-org.el b/emacs.d/core/core-org.el index f61b6b3..84b28f9 100644 --- a/emacs.d/core/core-org.el +++ b/emacs.d/core/core-org.el @@ -3,7 +3,9 @@ (use-package org :mode ("\\.org$" . org-mode) :ensure t - :bind ("C-c c" . org-capture) + :bind ( + ("C-c c" . org-capture) + ("C-c a" . org-agenda)) :config (progn (add-hook 'org-mode-hook #'toggle-word-wrap) @@ -20,6 +22,7 @@ org-directory fcuny/org-directory org-default-notes-file (concat org-directory "/refile.org") org-refile-targets '((org-agenda-files . (:maxlevel . 6))) + org-outline-path-complete-in-steps t org-todo-keywords '((sequence "TODO(t)" "DOING(i!)" "WAITING(w!)" "|" "DONE(d!)" "CANCEL(c!)")) org-link-abbrev-alist '(("src" . "~/src/%s") ("jira" . "https://jira.twitter.biz/browse/%s") |