ʕ •ᴥ•ʔWenqiang's Blog

I use org mode + org-roam w/ spacemacs.

Here I listed some shortcuts that I found useful.

org-todo

  • change task state with prefix t. Relating config:

      (setq org-todo-keyword-faces '(("TODO" . "pink")
                                     ("DOING" . "yellow")
                                     ("DONE" . "green")
                                     ("ABORT" . "red")))
      (setq org-todo-keywords '((sequence "TODO(t)" "DOING(i)" "|" "DONE(d)" "ABORT(a)")))
  • add a new task: T
  • add a subtask: M-t

org-toggle: prefix ,T

  • link display ,Tl
  • pretty entity: ,Te
  • inline image: ,Ti

org-insert: prefix ,i

  • insert structure template (src, quote, etc.) ,ib
  • insert link: ,il

#org mode #org-roam #cheatsheet #keybindings