summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-12-30 09:54:49 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-12-30 09:54:49 +0000
commit31f7a1568c7896b592b802751e9a3a333265dba8 (patch)
treebef35a0658c27696cb1899f8668b39163f6a3565
parent37c582e90fd40a18de26a862f15d9f2b3c61ae42 (diff)
elfeed feeds in init; writeroom and change org notes file
-rw-r--r--init.el32
1 files changed, 30 insertions, 2 deletions
diff --git a/init.el b/init.el
index e61d54d..1f0d78e 100644
--- a/init.el
+++ b/init.el
@@ -194,6 +194,32 @@
"Matthew Lemon\n"
"Berwick-upon-Tweed"))))))
+
+;; elfeed
+(use-package elfeed
+ :config
+ (setq elfeed-feeds
+ '("https://www.youtube.com/feeds/videos.xml?channel_id=UChWbNrHQHvKK6paclLp7WYw"
+ "https://www.reddit.com/r/linuxmasterrace.rss"
+ "https://feeds.feedburner.com/arstechnica/open-source"
+ "https://www.computerweekly.com/rss/IT-security.xml"
+ "https://www.fsf.org/static/fsforg/rss/news.xml"
+ "https://www.reddit.com/r/freebsd.rss"
+ "https://www.reddit.com/r/emacs.rss"
+ "https://www.reddit.com/r/rugbyunion/.rss"
+ "http://pragmaticemacs.com/feed/"
+ "https://200ok.ch/atom.xml"
+ "https://www.youtube.com/feeds/videos.xml?channel_id=UCkK9UDm_ZNrq_rIXCz3xCGA"
+ "https://www.youtube.com/feeds/videos.xml?channel_id=UCFzGyNKXPAglNq28qWYTDFA"
+ "https://www.youtube.com/feeds/videos.xml?channel_id=UC2eYFnH61tmytImy1mTYvhA"
+ "http://www.linuxinsider.com/perl/syndication/rssfull.pl"
+ "http://planet.debian.org/rss20.xml"
+ "http://feeds2.feedburner.com/Command-line-fu"
+ "https://opensource.org/news.xml"
+ "https://feeds.feedburner.com/arstechnica/index"
+ "https://www.wired.com/feed/rss"
+ "https://sivers.org/en.atom")))
+
;; recentf
(use-package recentf
:hook (after-init . recentf-mode)
@@ -537,6 +563,9 @@
(pending-delete-mode t)
+;; writeroom-mode
+(use-package writeroom-mode)
+
;; browse-kill-ring
(use-package browse-kill-ring
:bind ("C-x C-y" . browse-kill-ring)
@@ -567,7 +596,7 @@
"~/Nextcloud/org/calendar/home-cal.org"
"~/Nextcloud/org/calendar/work-cal.org")))
- (setq org-default-notes-file (concat org-directory "/refile.org"))
+ (setq org-default-notes-file (concat org-directory "/notes.org"))
(setq diary-file "~/Nextcloud/org/diary")
(setq org-agenda-include-diary t)
(setq org-agenda-show-future-repeats nil)
@@ -587,7 +616,6 @@
("w" "Agenda and WAITING" ((agenda "") (todo "WAITING")))
("p" "Agenda and PROJECTs" ((agenda "") (todo "PROJECT")))))
(define-key global-map "\C-cc" 'org-capture)
- (setq org-default-notes-file "~/Nextcloud/org/refile.org")
(setq org-capture-templates
(quote (("t" "Todo" entry (file "~/Nextcloud/org/todo.org")
"* TODO %?")