main
1;; Test daemon initialization for org-todos integration tests
2;; Loaded via emacsclient after daemon starts
3
4(setq org-todo-keywords
5 '((sequence "STRT(s)" "NEXT(n)" "TODO(t)" "WAIT(w)" "|" "DONE(d!)" "CANX(c@/!)")))
6
7;; load-path is set via command line --eval before loading this file
8(require 'org)
9(require 'org-ql)
10(require 'pi-org-todos)
11
12(message "pi-org-todos test init loaded successfully")