diff options
| author | bard <[email protected]> | 2023-09-24 18:20:13 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2023-09-24 18:20:13 -0400 |
| commit | 204ea0bf169197bbbc28a1f199fd747d509351bc (patch) | |
| tree | b782056c1f13775e2a5428b6ce1647af21aa0648 /org.el | |
| parent | 4724a722cb49f5f48c5c7ec1ae671e8ec1528ac3 (diff) | |
session saving and file separation
Diffstat (limited to 'org.el')
| -rw-r--r-- | org.el | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -2,11 +2,21 @@ ;; | Org Config | ;; |------------------------------------| +;; Org Variables (setq org-directory "~/Notes/Org-Roam/") (setq org-agenda-files (list "~/Notes/Org-Roam/todo.org")) -(setq org-roam-directory "~/Notes/Org-Roam/") -(setq org-roam-db-autosync t) +;; Making org mode look nice +(setq org-startup-indented t + org-hide-emphasis-markers t + org-startup-with-inline-images t + org-image-actual-width '(300)) + +;; Org todo keywords +(setq org-todo-keywords + '((sequence "TODO" "WAIT" "DONE"))) + +;; Org Agenda (setq org-agenda-custom-commands `(("A" "Daily agenda and top priority tasks" ((tags-todo "*" |
