diff options
author | Case Duckworth | 2021-01-30 11:26:42 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-30 11:26:42 -0600 |
commit | 695f846635279f41dd6d502115e8d223d0d683c1 (patch) | |
tree | a4de9f897b8e96e1cee003c6bfe61362b09cd429 | |
parent | Configure spell checking (diff) | |
download | emacs-695f846635279f41dd6d502115e8d223d0d683c1.tar.gz emacs-695f846635279f41dd6d502115e8d223d0d683c1.zip |
Change elfeed-protocol to just a big feed list
-rw-r--r-- | config.org | 60 |
1 files changed, 59 insertions, 1 deletions
diff --git a/config.org b/config.org index e24fddf..0f49797 100644 --- a/config.org +++ b/config.org | |||
@@ -1945,7 +1945,65 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast | |||
1945 | (define-key acdw/leader "f" #'elfeed) | 1945 | (define-key acdw/leader "f" #'elfeed) |
1946 | #+end_src | 1946 | #+end_src |
1947 | 1947 | ||
1948 | *** Elfeed-protocol | 1948 | *** Elfeed feeds |
1949 | |||
1950 | #+begin_src emacs-lisp :noweb-ref settings | ||
1951 | (setq elfeed-feeds | ||
1952 | `( | ||
1953 | ("https://rachelbythebay.com/w/atom.xml" blags tech) | ||
1954 | ("https://notes.neeasade.net/rss_full.xml" blags tech) | ||
1955 | ("https://www.uninformativ.de/blog/feeds/en.atom" blags tech) | ||
1956 | ("http://blog.z3bra.org/rss/feed.xml" blags tech) | ||
1957 | ("https://blog.sanctum.geek.nz/feed/" blags tech) | ||
1958 | ("https://drewdevault.com/blog/index.xml" blags tech) | ||
1959 | ("https://usesthis.com/feed.atom" tech) | ||
1960 | ("https://occasionallycogent.com/feed.xml" blags) | ||
1961 | ("https://www.murilopereira.com/index.xml" blags tech) | ||
1962 | ("https://botanistinthekitchen.blog/feed/" blags food) | ||
1963 | ("https://www.careercenterbr.com/feed/" work) | ||
1964 | ("https://blog.ebrpl.com/feed/" work) | ||
1965 | (,(concat "https://lemmy.ml/feeds/front/" ; long-ass url | ||
1966 | "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9." | ||
1967 | "eyJpZCI6MTY4MjQsImlzcyI6ImxlbW15Lm1sIn0" | ||
1968 | ".yE2zUGjvlEuTZZi3TiF9HR7L7ITM9f_" | ||
1969 | "fQnquyYLgdJ4.xml?sort=Active") | ||
1970 | news) | ||
1971 | ("https://lobste.rs/rss" news tech) | ||
1972 | ("https://feeds.npr.org/1001/rss.xml" news) | ||
1973 | (,(concat ; long-ass url | ||
1974 | "https://tilde.news/rss?token=" | ||
1975 | "FvdFj8rQkhrBy9j1yON1t6RYKDdcuG1MoUlyvRICmbgDGCf2JTWAEObDhdgt") | ||
1976 | news tildes tech) | ||
1977 | ("https://www.acdw.net/atom.xml" fwends) | ||
1978 | ("https://envs.net/~lucidiot/rsrsss/feed.xml" fwends) | ||
1979 | ("https://planet.emacslife.com/atom.xml" emacs) | ||
1980 | ("http://tilde.town/~lucidiot/fridaypostcard.xml" tildes) | ||
1981 | ("https://quasivoid.net/feed.atom" tildes) | ||
1982 | ("https://benjaminwil.info/feed.xml" tildes) | ||
1983 | ("https://benjaminwil.info/antisocial/feed.xml" tildes) | ||
1984 | ("https://blog.ryliejamesthomas.net/feed/" tildes) | ||
1985 | ("https://p1k3.com/feed" tildes) | ||
1986 | ("https://cosmic.voyage/rss.xml" tildes) | ||
1987 | ("https://jackreid.xyz/index.xml" tildes) | ||
1988 | ("http://lambdacreate.com/static/feed.rss" tildes) | ||
1989 | ("https://gaffen.co.uk/feed.xml" tildes) | ||
1990 | ("https://gmb.21x2.net/rss.xml" tildes) | ||
1991 | ("https://www.insom.me.uk/feed.xml" tildes) | ||
1992 | ("https://invisibleup.com/atom.xml" tildes) | ||
1993 | ("https://m455.casa/feed.rss" tildes) | ||
1994 | ("https://petras.space/index.xml" tildes) | ||
1995 | ("https://www.benovermyer.com/post/index.xml" tildes) | ||
1996 | ("https://tilde.town/~trm/blog/atom.xml" tildes) | ||
1997 | ("https://tilde.team/feed.rss" tildes) | ||
1998 | ("http://ajroach42.com/feed.xml" tildes) | ||
1999 | ("http://tilde.town/~mroik/blog/rss.xml" tildes) | ||
2000 | ("https://hamster.dance/blog/rss/" tildes) | ||
2001 | ("https://m455.neocities.org/feed.rss" tildes) | ||
2002 | ("https://eli.li/feed.rss" tildes) | ||
2003 | ("https://aiweirdness.com/rss" tech))) | ||
2004 | #+end_src | ||
2005 | |||
2006 | *** COMMENT Elfeed-protocol | ||
1949 | 2007 | ||
1950 | I'm not /the most/ happy with this -- it seems like a lot for not that | 2008 | I'm not /the most/ happy with this -- it seems like a lot for not that |
1951 | much -- but until I figure out a proper syncing solution, it'll do. | 2009 | much -- but until I figure out a proper syncing solution, it'll do. |