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

49 lines
1.7 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)
2019-11-17 11:15:18 +01:00
(when (string= (system-name) "EVG02667NB")
2020-02-13 18:47:50 +01:00
(setq org-duration-format (quote h:mm)
org-babel-python-command "python")
2020-02-18 14:00:43 +01:00
(setq org-plantuml-jar-path
(expand-file-name "~/AppData/Local/Programs/plantuml/plantuml.jar"))
(when *docs-path*
(setq org-agenda-files `(,(concat *docs-path* "\\Journal"))
org-default-notes-file (concat *docs-path* "\\Journal\\notes.org"))))
2019-11-17 11:32:36 +01:00
(provide 'org-mode-settings)
2020-02-15 15:21:26 +01:00
;; Local Variables:
;; mode: emacs-lisp
;; coding: utf-8
;; fill-column: 79
;; End: