tekakutli/commandomoire
An org-roam based Rolodex for practical commands and recipes
| nodes | adding ipfs | |
| LICENSE | Initial commit | |
| README.md | the other bit of my nodes | |
commandomoire
An org-roam based Rolodex for commands, recipes, snippets, etc
Terminal:
cd ~/org/roam
git clone https://github.com/tekakutli/commandomoire
and add this to your roam .gitignore so it doesn't get mixed-in with yours
roam/commandomoire/
WHY
I can't memorize every command that I may need to use, so I store them.
Reading the documentation? Looking on the archwiki or stackoverflow? Asking gpt? AGAIN? what if instead: a rolodex.
No longer a need to research again.
WHAT ELSE IS THIS
An attempt at an experiment, where people'd share bits of their org-roams, known as org-book(lemmy-fediverse community)
HOW TO USE
add something like this to your config.el so you can copy a cells
(bind-key (kbd "C-c y")
(lambda()(interactive)
(when (org-at-table-p)
(kill-new
(string-trim
(substring-no-properties(org-table-get-field))))))
org-mode-map)
TEMPLATE
To create nodes for this directory I have a template. config.el
(setq org-roam-capture-templates
'(
("n" "default" plain
"%?"
:if-new (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
:unnarrowed t)
("r" "commandomoire" plain
"%?"
:if-new (file+head "commandomoire/nodes/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n#+filetags: :commandomoire:rolodex:\n")
:unnarrowed t)
)
)