Compare commits
No commits in common. "ca12bfeeab990ef2292ef80f78253e2e05f4d02e" and "6c39fa997863532f8ab6f778eda4eab06950fce3" have entirely different histories.
ca12bfeeab
...
6c39fa9978
13
README.org
13
README.org
|
@ -70,6 +70,13 @@ Bind mouse keys to expected movement commands
|
||||||
(keymap-global-set "<mouse-9>" #'next-buffer)
|
(keymap-global-set "<mouse-9>" #'next-buffer)
|
||||||
#+end_src
|
#+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
|
Set custom location for backups
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -944,11 +951,7 @@ Configure email with iCalendar event support, to integrate with
|
||||||
(file+olp "notes.org" "Inbox"))
|
(file+olp "notes.org" "Inbox"))
|
||||||
("t" "Task" entry
|
("t" "Task" entry
|
||||||
(file+olp "tasks.org" "Inbox")
|
(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)
|
(when (or (package-installed-p 'emacsql-sqlite)
|
||||||
(package-installed-p 'emacsql-sqlite-builtin))
|
(package-installed-p 'emacsql-sqlite-builtin))
|
||||||
|
|
Loading…
Reference in a new issue