summaryrefslogtreecommitdiffstats
path: root/lisp/init-org.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-org.el')
-rw-r--r--lisp/init-org.el14
1 files changed, 6 insertions, 8 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 3924d3a..dcc4a66 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -87,14 +87,6 @@ to `org-goto'."
;; include two weeks in agenda
(setq org-agenda-span 'fortnight)
- ;; customize agenda
- (setq org-agenda-custom-commands
- '(;; default view
- ("n" "Agenda and all TODOs" ((agenda "") (alltodo "")))
- ;; split by state
- ("m" "Agenda and all TODOs split by state"
- ((agenda "") (todo "TODO") (todo "WAIT")))))
-
;; set export backends
(setq org-export-backends '(ascii html md))
@@ -104,6 +96,9 @@ to `org-goto'."
(shell . t))
org-babel-python-command "python3")
+ ;; skip confirmation when evaluating code blocks
+ (setq org-confirm-babel-evaluate nil)
+
:config
;; enable template expansion when typing <s in org-mode
(add-to-list 'org-modules 'org-tempo t))
@@ -117,6 +112,9 @@ to `org-goto'."
(use-package org-modern
:ensure t
+ :init
+ ;; do not use folding indicators
+ (setq org-modern-star 'replace)
:config
(global-org-modern-mode 1))