tekakutli/commandomoire
1
2
Fork
You've already forked commandomoire
1
An org-roam based Rolodex for practical commands and recipes
  • Org 100%
2023年08月20日 20:55:22 -06:00
nodes adding ipfs 2023年08月20日 20:55:22 -06:00
LICENSE Initial commit 2023年08月10日 11:55:26 +00:00
README.md the other bit of my nodes 2023年08月19日 17:17:36 -06:00

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)
 )
)