Updating org agenda stuff + elfeed

This commit is contained in:
2025-06-02 11:29:16 -07:00
parent 6f4021d0af
commit 58884693b0

View File

@@ -90,7 +90,8 @@
(setq org-indent-indentation-per-level 2)
(setq org-hide-emphasis-markers t)
(setq org-agenda-files
'("~/sync/org/agenda/todo.org"))
'("~/sync/org/agenda/work.org"
"~/sync/org/agenda/personal.org"))
(require 'org-habit)
(add-to-list 'org-modules 'org-habit)
@@ -139,9 +140,9 @@
;; Create capture templates
(setq org-capture-templates
`(("t" "Tasks")
("tw" "Work Task" entry (file+headline "~/documents/org/agenda/todo.org" "Work")
("tw" "Work Task" entry (file+headline "~/sync/org/agenda/work.org" "Inbox")
"* TODO %?\n %U\n %i" :empty-lines 1)
("tp" "Personal Task" entry (file+headline "~/documents/org/agenda/todo.org" "Personal")
("tp" "Personal Task" entry (file+headline "~/sync/org/agenda/personal.org" "Inbox")
"* TODO %?\n %U\n %i" :empty-lines 1)
("tb" "Backlog Task" entry (file+headline "~/documents/org/agenda/todo.org" "Backlog")
"* BACKLOG %?\n %U\n %i" :empty-lines 1)))
@@ -150,7 +151,7 @@
(setq org-edit-src-content-indentation 0)
;; Set org agenda dir
(setq org-directory "~/documents/org/")
(setq org-directory "~/sync/org/agenda")
;; Init org font setup
(opal/org-font-setup))
@@ -254,6 +255,11 @@
"gr" 'elfeed-update ;; Refresh feeds
"q" 'quit-window)) ;; Quit Elfeed
(use-package elfeed-org
:ensure t
:config
(setq rmh-elfeed-org-files '("~/sync/org/elfeed/feeds.org")))
(setq create-lockfiles nil)
;; Make sure eww opens in it's own buffer
@@ -314,3 +320,6 @@
(setq +lookup-dictionary-prefer-offline t)
(setq dictionary-server "dict.org")
(setq browse-url-generic-program "librewolf")
(setq browse-url-browser-function 'browse-url-generic)