Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
This repo implements a simple Emacs command that allows you to browse org-roam dailies in chronological order in a buffer. The dailies are read incrementally. It looks like this:
How to run it?
- Save
org-roam-dailies-feed.elsomewhere inload-path(e.g.~/.emacs.d/lisp/). - In the config file:
(add-to-list 'load-path "~/.emacs.d/lisp/") (require 'org-roam-dailies-feed) ;; Example keybindings (global-set-key (kbd "C-c r f") #'org-roam-dailies-feed-show) (global-set-key (kbd "C-c r F") #'org-roam-dailies-feed-load-older) - Make sure dailies are located in
org-roam-dailies-directoryororg-roam-directory/daily/with nameslike 2025-11-13.org. - You might need to modify the
org-roam-dailies-feed--dailies-dirfunction to help this code to locate your dailies. - Call
M-x org-roam-dailies-feed-show.- It loads the latest
org-roam-dailies-feed-batch-sizedays. - Scroll down; when you’re close to the end, it auto-loads older days.
- Or use
M-x org-roam-dailies-feed-load-older(orC-c r Fabove) to force loading more.
- It loads the latest
Notes
I didn't write the code. A LLM did. I'm sharing it because I find it pretty useful.
