Two Eamcs tweaks I forgot about (most of you will know these):
Use Consult’s recentf
to see a list of files that were edited recently:
(global-set-key (kbd "C-x C-r") 'consult-recent-file)
Consult’s org-agenda (jump to heading) is quicker than what I usually do, which is to list all ACTIVE keywords in emacs (this is how I list my projects), and then go down the tree to find the specific TODO header I want.
Since I often know what I’m looking for within active projects, I can use consult-org-agenda
, which narrows headers dynamically as I search. Much faster and clutter-free:
(global-set-key (kbd "C-c C-h") 'consult-org-agenda)