ENH add org-sql customizations
This commit is contained in:
parent
6930d30d1a
commit
81942ec187
25
etc/conf.org
25
etc/conf.org
|
@ -3325,22 +3325,22 @@ 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-db-config '(postgres :hostname "portnoy4prez.yavin4.ch"
|
(setq org-sql-db-config '(postgres :database "org_sql"
|
||||||
:port "35432"
|
:port 35432
|
||||||
:database "org_sql"
|
:hostname "portnoy4prez.yavin4.ch"
|
||||||
:password "org_sql"
|
:password "org_sql"
|
||||||
:username "org_sql")
|
:username "org_sql")
|
||||||
|
|
||||||
org-sql-files '(
|
org-sql-debug nil
|
||||||
;; "~/Org/.archive/"
|
|
||||||
;; "~/Org/general.org_archive"
|
org-sql-files '("~/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
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
@ -3675,6 +3675,7 @@ Initialize by running =nd/mu-init=.
|
||||||
;; (require 'smtpmail-async)
|
;; (require 'smtpmail-async)
|
||||||
(setq send-mail-function 'smtpmail-send-it
|
(setq send-mail-function 'smtpmail-send-it
|
||||||
smtpmail-debug-info nil
|
smtpmail-debug-info nil
|
||||||
|
auth-source-debug nil
|
||||||
message-send-mail-function 'smtpmail-send-it)
|
message-send-mail-function 'smtpmail-send-it)
|
||||||
(setq auth-sources '(password-store))
|
(setq auth-sources '(password-store))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue