¶News
EmacsConf 2024 has announced a Call for Participation!
The conference will be December 7 and 8 this year:
https://emacsconf.org/2024/cfp/
If you have an Emacs-related topic you’re excited about, consider submitting a proposal!
The recording of my LibrePlanet 2024 keynote has finally been posted!
¶Checking out Denote 3.0
At the beginning of this week, Protesilaos released version 3.0 of Denote with a set of new features that should be useful for your note-taking workflow customizations. He also published the first release of a new package called consult-denote
which integrates Denote with the Consult package to make certain tasks easier.
Today we’re going to try out both of these packages to see if there are new workflow tricks we can use in our own configurations!
Release posts:
¶The final configuration
(load-theme 'modus-vivendi-tinted t) (tool-bar-mode 0) (menu-bar-mode 0) (add-to-list 'completion-styles 'flex) (use-package vertico :ensure t :config (vertico-mode 1)) (use-package consult :ensure t) (use-package denote :ensure t :custom (denote-directory "~/Notes") (denote-rename-confirmations '(rewrite-front-matter)) (denote-save-buffers t) :config (add-hook 'text-mode-hook #'denote-fontify-links-mode-maybe)) (use-package consult-denote :after (denote consult) :ensure t :config (consult-denote-mode 1))