14 lines
248 B
EmacsLisp
14 lines
248 B
EmacsLisp
;;; org-keywords.el -*- lexical-binding: t; -*-
|
|
|
|
(after! org
|
|
(setq org-todo-keywords
|
|
'((sequence "TODO(t)"
|
|
"NEXT(n)"
|
|
"WAIT(w)"
|
|
"|"
|
|
"DONE(d)"
|
|
"HOLD(h)"
|
|
"AFVENTER(a)"
|
|
"DEFERRED(e)"
|
|
"CANCELLED(c)"))))
|