9 lines
245 B
Plaintext
9 lines
245 B
Plaintext
(provide 'init-capture)
|
|
(setq org-capture-templates
|
|
'(("t" "Todo" entry
|
|
(file "~/org/todo.org")
|
|
"* TODO %?\n %U\n")))
|
|
|
|
(global-set-key (kbd "C-c t") #'org-capture)
|
|
(add-hook 'org-capture-mode-hook 'delete-other-windows)
|