diff options
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") |