summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Emacs.org14
1 files changed, 13 insertions, 1 deletions
diff --git a/Emacs.org b/Emacs.org
index 0962a70..d9d7ed7 100644
--- a/Emacs.org
+++ b/Emacs.org
@@ -42,6 +42,7 @@
42 - [[#emms][EMMS]] 42 - [[#emms][EMMS]]
43 - [[#pdf-tools][PDF Tools]] 43 - [[#pdf-tools][PDF Tools]]
44 - [[#mu4e][Mu4e]] 44 - [[#mu4e][Mu4e]]
45 - [[#rss][RSS]]
45- [[#runtime-performance][Runtime Performance]] 46- [[#runtime-performance][Runtime Performance]]
46 47
47* Startup Performance 48* Startup Performance
@@ -952,12 +953,23 @@
952#+end_src 953#+end_src
953 954
954** Mu4e 955** Mu4e
956- Load my [[./Mu4e.org][mu4e]] config
955 957
956#+begin_src emacs-lisp 958#+begin_src emacs-lisp
957 ;; Load my mu4e config
958 (require 'jd-mu4e) 959 (require 'jd-mu4e)
959#+end_src 960#+end_src
960 961
962** RSS
963
964#+begin_src emacs-lisp
965
966 (use-package elfeed
967 :config
968 (setq elfeed-feeds
969 '("https://www.reddit.com/r/emacs.rss")))
970
971#+end_src
972
961* Runtime Performance 973* Runtime Performance
962 974
963#+begin_src emacs-lisp 975#+begin_src emacs-lisp