diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-01T20·01+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-01T20·02+0100 |
commit | d88a4d5792c1743d60446a1e96412c7f72a331a1 (patch) | |
tree | 1920b6e155ccb9fd4005d62782b301bcc5aebe7f /emacs/.emacs.d/wpc/wpc-org.el | |
parent | 90154fd2dd2808c2c2be7502ed0c8863b9d9911b (diff) |
Drop support for org-capture
I don't use org-capture, and I am not currently interested in developing that habit.
Diffstat (limited to 'emacs/.emacs.d/wpc/wpc-org.el')
-rw-r--r-- | emacs/.emacs.d/wpc/wpc-org.el | 36 |
1 files changed, 3 insertions, 33 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-org.el b/emacs/.emacs.d/wpc/wpc-org.el index 3263fb50380c..47eed5f16fd1 100644 --- a/emacs/.emacs.d/wpc/wpc-org.el +++ b/emacs/.emacs.d/wpc/wpc-org.el @@ -11,50 +11,21 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'f) +(require 'org-helpers) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Configuration ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -(setq org-directory "~/Dropbox/org") - -;; TODO: figure out how to nest this in (use-package org ...) -(setq org-capture-templates - `(("w" "work" entry (file+headline - ,(f-join org-directory "work.org") - "Tasks") - "* TODO %?") - ("p" "personal" entry (file+headline - ,(f-join org-directory "personal.org") - "Tasks") - "* TODO %? ") - ("i" "ideas" entry (file+headline - ,(f-join org-directory "ideas.org") - "Tasks") - "* %? ") - ("s" "shopping list" entry (file+headline - ,(f-join org-directory "shopping.org") - "Items") - "* TODO %? "))) - -(evil-set-initial-state 'org-mode 'normal) - (use-package org :config + (evil-set-initial-state 'org-mode 'normal) (general-add-hook 'org-mode-hook ;; TODO: consider supporting `(disable (list linum-mode company-mode))' (list (disable linum-mode) (disable company-mode))) - (general-define-key :prefix "C-c" - "l" #'org-store-link - "a" #'org-agenda - "c" #'org-capture) (setq org-startup-folded nil) - (setq org-todo-keywords - '((sequence "TODO" "BLOCKED" "DONE"))) - (setq org-default-notes-file (f-join org-directory "notes.org")) - (setq org-agenda-files (list (f-join org-directory "work.org") - (f-join org-directory "personal.org"))) + (setq org-todo-keywords '((sequence "TODO" "BLOCKED" "DONE"))) ;; TODO: troubleshoot why `wpc/kbds-minor-mode', `wpc/ensure-kbds' aren't ;; enough to override the following KBDs. See this discussion for more context ;; on where the idea came from: @@ -62,7 +33,6 @@ (general-unbind 'normal org-mode-map "M-h" "M-j" "M-k" "M-l")) (use-package org-bullets - :after (org) :config (general-add-hook 'org-mode-hook (enable org-bullets-mode))) |