Neue Capture-Templates

This commit is contained in:
hansi
2026-04-06 14:04:32 +02:00
parent ee451f78fd
commit b230f57ff0
10 changed files with 220 additions and 29 deletions

10
lisp/init-keybindings.el Normal file
View File

@@ -0,0 +1,10 @@
;;; init-keybindings.el --- Keybindings -*- lexical-binding: t; -*-
(global-set-key (kbd "C-c t") #'my/org-capture-new-task)
(global-set-key (kbd "C-c d") #'my/org-capture-new-doc)
(global-set-key (kbd "C-c k") #'my/org-capture-new-kpi)
(global-set-key (kbd "C-c n") #'my/org-capture-new-note)
(provide 'init-keybindings)
;;; init-keybindings.el ends here