From dbb822434b1a5e11ce7fe68d9bd4706845fce356 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 9 Feb 2021 16:51:11 -0600 Subject: Up the gc-cons-percentage during startup --- init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/init.el b/init.el index ae4ae9f..cadfaca 100644 --- a/init.el +++ b/init.el @@ -18,6 +18,7 @@ (let* (;; Speed up init (gc-cons-threshold most-positive-fixnum) + (gc-cons-percentage 0.6) (file-name-handler-alist nil) ;; Config file names (config (expand-file-name "config" -- cgit 1.4.1-21-gabe81 From a933131b4bb65ee4fca330ad359235871b9b46f6 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 9 Feb 2021 16:51:35 -0600 Subject: Change the Advocate feed Hopefully this'll be less noisy. If it's not ... I'll just have to unsubscribe, TBH. --- config.org | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 386363f..0f9af2f 100644 --- a/config.org +++ b/config.org @@ -2108,7 +2108,16 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast ("https://aiweirdness.com/rss" tech) ("http://tilde.town/~m455/javapool.rss" tilde) ("https://spwhitton.name/blog/index.rss" blags) - ("https://www.theadvocate.com/search/?f=rss&t=article&l=50" news) + (,(concat "https://www.theadvocate.com/search/?" + ;; Let's Build A URL!!! + "f=rss" ; RSS feed + "&l=10" ; 10 most recent (length) + "&c[]=" ; I'm guessing ... categories? + "baton_rouge/news*," + "baton_rouge/opinion*" + "?t=article" ; type=article + ) + news) ("https://esoteric.codes/rss" tech) ("https://wphicks.github.io/feed.xml" blags) )) -- cgit 1.4.1-21-gabe81