diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.org b/config.org index 0381d19..2170f56 100644 --- a/config.org +++ b/config.org | |||
@@ -1071,6 +1071,16 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m | |||
1071 | (require 'ox-md)) | 1071 | (require 'ox-md)) |
1072 | #+end_src | 1072 | #+end_src |
1073 | 1073 | ||
1074 | *** Org Agenda | ||
1075 | |||
1076 | #+begin_src emacs-lisp | ||
1077 | (cuss org-agenda-files (no-littering-expand-etc-file-name "agenda-files")) | ||
1078 | |||
1079 | (if (and (stringp org-agenda-files) | ||
1080 | (not (file-exists-p org-agenda-files))) | ||
1081 | (with-temp-buffer (write-file org-agenda-files))) | ||
1082 | #+end_src | ||
1083 | |||
1074 | *** Make bullets look like bullets | 1084 | *** Make bullets look like bullets |
1075 | 1085 | ||
1076 | #+begin_src emacs-lisp | 1086 | #+begin_src emacs-lisp |