11 lines
359 B
EmacsLisp
11 lines
359 B
EmacsLisp
|
|
;;; 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
|