Drop support for org-capture
I don't use org-capture, and I am not currently interested in developing that habit.
This commit is contained in:
		
							parent
							
								
									90154fd2dd
								
							
						
					
					
						commit
						d88a4d5792
					
				
					 1 changed files with 3 additions and 33 deletions
				
			
		|  | @ -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))) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue