diff options
-rw-r--r-- | config.org | 11 | ||||
-rw-r--r-- | init.el | 1 |
2 files changed, 11 insertions, 1 deletions
diff --git a/config.org b/config.org index 88c708f..dcf05ec 100644 --- a/config.org +++ b/config.org | |||
@@ -2108,7 +2108,16 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast | |||
2108 | ("https://aiweirdness.com/rss" tech) | 2108 | ("https://aiweirdness.com/rss" tech) |
2109 | ("http://tilde.town/~m455/javapool.rss" tilde) | 2109 | ("http://tilde.town/~m455/javapool.rss" tilde) |
2110 | ("https://spwhitton.name/blog/index.rss" blags) | 2110 | ("https://spwhitton.name/blog/index.rss" blags) |
2111 | ("https://www.theadvocate.com/search/?f=rss&t=article&l=50" news) | 2111 | (,(concat "https://www.theadvocate.com/search/?" |
2112 | ;; Let's Build A URL!!! | ||
2113 | "f=rss" ; RSS feed | ||
2114 | "&l=10" ; 10 most recent (length) | ||
2115 | "&c[]=" ; I'm guessing ... categories? | ||
2116 | "baton_rouge/news*," | ||
2117 | "baton_rouge/opinion*" | ||
2118 | "?t=article" ; type=article | ||
2119 | ) | ||
2120 | news) | ||
2112 | ("https://esoteric.codes/rss" tech) | 2121 | ("https://esoteric.codes/rss" tech) |
2113 | ("https://wphicks.github.io/feed.xml" blags) | 2122 | ("https://wphicks.github.io/feed.xml" blags) |
2114 | )) | 2123 | )) |
diff --git a/init.el b/init.el index ae4ae9f..cadfaca 100644 --- a/init.el +++ b/init.el | |||
@@ -18,6 +18,7 @@ | |||
18 | 18 | ||
19 | (let* (;; Speed up init | 19 | (let* (;; Speed up init |
20 | (gc-cons-threshold most-positive-fixnum) | 20 | (gc-cons-threshold most-positive-fixnum) |
21 | (gc-cons-percentage 0.6) | ||
21 | (file-name-handler-alist nil) | 22 | (file-name-handler-alist nil) |
22 | ;; Config file names | 23 | ;; Config file names |
23 | (config (expand-file-name "config" | 24 | (config (expand-file-name "config" |