Compare commits

...

2 commits

Author SHA1 Message Date
Evie Litherland-Smith ca12bfeeab Add khalel capture templates in org-capture use-package block
Ensures they aren't overwritten by org-capture-templates definition.
2024-11-05 08:15:39 +00:00
Evie Litherland-Smith 00d392fc87 Remove windmove shift binds 2024-11-05 08:12:48 +00:00

View file

@ -70,13 +70,6 @@ Bind mouse keys to expected movement commands
(keymap-global-set "<mouse-9>" #'next-buffer)
#+end_src
Enable default binds of =Windmove= to navigate windows using shift+arrow
#+begin_src emacs-lisp
(when (fboundp 'windmove-default-keybindings)
(windmove-default-keybindings))
#+end_src
Set custom location for backups
#+begin_src emacs-lisp
@ -951,7 +944,11 @@ Configure email with iCalendar event support, to integrate with
(file+olp "notes.org" "Inbox"))
("t" "Task" entry
(file+olp "tasks.org" "Inbox")
"* TODO %?\nDEADLINE: %t\n %i\n %a"))))
"* TODO %?\nDEADLINE: %t\n %i\n %a")))
:config
(when (package-installed-p 'khalel)
(with-eval-after-load 'khalel
(khalel-add-capture-template))))
(when (or (package-installed-p 'emacsql-sqlite)
(package-installed-p 'emacsql-sqlite-builtin))