diff options
author | Thanos Apollo <[email protected]> | 2023-02-28 08:44:40 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-02-28 08:44:40 +0200 |
commit | 00c1f0aec4cc367052c9fd372f1baa9aeb8f311e (patch) | |
tree | da534364ea2292826f3da416fe8d39d0f1b475a1 /.emacs.d/init.el | |
parent | a3a6ed29f384501b6200efe0fa28887bc9b86525 (diff) |
emacs: Add new rss feeds, require ox-md
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 59cb9e4..9e5f893 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -731,6 +731,8 @@ you have the correctly set the OPENAI_API_KEY variable" :height 1.0 :foreground "#A66CFF")) +(require 'ox-md nil t) + (setq org-directory "~/org/" org-agenda-files '("~/org/agenda.org") org-default-notes-file (expand-file-name "notes.org" org-directory) @@ -881,12 +883,13 @@ you have the correctly set the OPENAI_API_KEY variable" ("https://protesilaos.com/codelog.xml" Proetesilaos Coding) ("https://guix.gnu.org/feeds/blog.atom" Guix Blog) ("https://rss.nytimes.com/services/xml/rss/nyt/World.xml" NYT World) - ("https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml" NYT Tech) ("https://rss.nytimes.com/services/xml/rss/nyt/Science.xml" NYT Science) - ("https://rss.nytimes.com/services/xml/rss/nyt/Health.xml" NYT Health)))) + ("https://rss.nytimes.com/services/xml/rss/nyt/Health.xml" NYT Health) + ("https://drewdevault.com/blog/index.xml" DrewDeVault) + ("http://lifehacker.com/index.xml" LifeHacker)))) -(setq elfeed-goodies/entry-pane-size 0.7) -(add-hook 'elfeed-update 'elfeed-goodies/setup) +(setq elfeed-goodies/entry-pane-size 0.65) +(elfeed-goodies/setup) ;;Add pdf-isearch-minor-mode hook, otherwise isearch will be buggy ;;Darkmode hook, cause I don't want color or light in my life, I'm a vampire. @@ -942,15 +945,12 @@ you have the correctly set the OPENAI_API_KEY variable" (setq mu4e-maildir-shortcuts '(("/Fastmail/Inbox" . ?i) ("/Fastmail/Sent" . ?s) - ;; ("/Gmail/Trash" . ?t) - ;; ("/Gmail/Drafts" . ?d) - ;; ("/Gmail/[Gmail]/All Mail" . ?a )) (setq mu4e-contexts `(, (set-mu4e-context "Fastmail" "Thanos Apollo" - "[email protected]" "Thanos\nhttps://thanosapollo.com/public" + "[email protected]" "Thanos\nhttps://thanosapollo.com/public" "smtp.fastmail.com"))) ;; (setq smtpmail-smtp-service 465 |