emacs.d/bundle/org-mode-settings.el

54 lines
1.9 KiB
EmacsLisp
Raw Normal View History

(setq org-agenda-dim-blocked-tasks nil
2020-02-15 10:40:23 +01:00
org-agenda-files (quote
("~/Documents/Journal"))
org-agenda-inhibit-startup nil
2020-02-15 10:40:23 +01:00
org-babel-load-languages (quote
((js . t)
(emacs-lisp . t)
(python . t)
(sqlite . t)
(lisp . t)
(shell . t)
(css . t)
2020-02-18 14:00:43 +01:00
(calc . t)
(plantuml . t)
(dot . t)))
org-babel-shell-names (quote ("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh"))
org-clock-persist t
org-confirm-babel-evaluate nil
org-default-notes-file "~/Documents/Journal/notes.org"
org-html-doctype "html5"
org-html-html5-fancy t
org-log-done (quote time)
org-startup-folded nil
org-startup-truncated nil
2020-02-03 19:43:28 +01:00
org-babel-python-command "python3"
org-todo-keywords (quote ((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED"))))
2019-11-17 11:32:36 +01:00
2020-02-18 08:42:13 +01:00
(setq org-use-property-inheritance t)
(org-clock-persistence-insinuate)
2019-11-27 10:36:20 +01:00
(org-display-inline-images)
2020-02-20 19:09:41 +01:00
(when (eq system-type 'windows-nt)
(setq org-duration-format (quote h:mm))
(setq org-babel-python-command "python")
(setq org-plantuml-jar-path (expand-file-name
"~/AppData/Local/Programs/plantuml/plantuml.jar"))
(when (string= (system-name) "EVG02667NB")
(when *docs-path*
(setq org-agenda-files `(,(concat *docs-path* "\\Journal")))
(setq org-default-notes-file (concat *docs-path* "\\Journal\\notes.org")))))
2019-11-17 11:32:36 +01:00
2020-02-19 22:45:37 +01:00
(when (eq system-type 'gnu/linux)
(setq org-plantuml-jar-path
(expand-file-name "~/.local/bin/plantuml.jar")))
(provide 'org-mode-settings)
2020-02-15 15:21:26 +01:00
;; Local Variables:
;; mode: emacs-lisp
;; coding: utf-8
;; fill-column: 79
;; End: