ENH update org sql options for psql

This commit is contained in:
Nathan Dwarshuis 2020-12-27 11:01:35 -05:00
parent 606b73583c
commit 93dcc14672
1 changed files with 10 additions and 20 deletions

View File

@ -3324,31 +3324,21 @@ Org mode is great and all, but in many cases, text files just won't cut it. Hard
:END: :END:
These are variables that I set for my use but will not go into the eventual package These are variables that I set for my use but will not go into the eventual package
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq org-sql-use-tag-inheritance t (setq org-sql-db-config '(postgres :hostname "portnoy4prez.yavin4.ch"
:port "35432"
org-sql-ignored-properties nil :database "org_sql"
org-sql-ignored-tags nil :password "org_sql"
org-sql-ignored-link-types 'all :username "org_sql")
org-sql-included-headline-planning-types '(:closed :scheduled :deadline)
org-sql-included-contents-timestamp-types '(active)
org-sql-store-planning-timestamps t
org-sql-store-logbook-other t
org-sql-store-logbook-planning-changes t
org-sql-store-logbook-state-changes t
org-sql-store-clock-notes t
org-sql-store-clocks t
org-sql-files '( org-sql-files '(
"~/Org/.archive/" ;; "~/Org/.archive/"
"~/Org/general.org_archive" ;; "~/Org/general.org_archive"
"~/Org/general.org" "~/Org/general.org"
;; "~/Org/test1.org_archive" ;; "~/Org/test1.org_archive"
;; "~/Org/test2.org_archive" ;; "~/Org/test2.org_archive"
"~/Org/incubator.org" ;; "~/Org/incubator.org"
"~/Org/projects/" ;; "~/Org/projects/"
"~/Org/repeater.org_archive" ;; "~/Org/repeater.org_archive"
)) ))
#+END_SRC #+END_SRC
** tomato mode ** tomato mode