|
@@ -109,14 +109,14 @@ Right now, just make sure I can connect to my local Mopidy server via MPDel.
|
|
* RSS
|
|
* RSS
|
|
Here we’re going to use TinyTinyRSS as a backend store for our RSS feeds.
|
|
Here we’re going to use TinyTinyRSS as a backend store for our RSS feeds.
|
|
#+BEGIN_SRC emacs-lisp
|
|
#+BEGIN_SRC emacs-lisp
|
|
-(setq elfeed-protocol-ttrss-maxsize 200) ;; bigger than 200 is invalid
|
|
|
|
|
|
+(setq elfeed-protocol-ttrss-maxsize 100) ;; bigger than 200 is invalid
|
|
(setq elfeed-feeds '("ttrss+https://powellc:hT7nPKAHa^fYwXZ*@reader.unbl.ink"))
|
|
(setq elfeed-feeds '("ttrss+https://powellc:hT7nPKAHa^fYwXZ*@reader.unbl.ink"))
|
|
|
|
|
|
(setq elfeed-log-level 'debug)
|
|
(setq elfeed-log-level 'debug)
|
|
(elfeed-protocol-enable)
|
|
(elfeed-protocol-enable)
|
|
|
|
|
|
-;; Schedule feed update for every day at 3PM
|
|
|
|
-(run-at-time "15 min" nil 'elfeed-update)
|
|
|
|
|
|
+;; Schedule feed update for every 15 minutes
|
|
|
|
+(run-at-time "30 min" nil 'elfeed-update)
|
|
#+END_SRC
|
|
#+END_SRC
|
|
|
|
|
|
Then wel’ll setup some nice defaults and font settings for viewing feeds in Elfeed.
|
|
Then wel’ll setup some nice defaults and font settings for viewing feeds in Elfeed.
|
|
@@ -323,6 +323,13 @@ I use notmuch to read and write email from within Emacs.
|
|
message-sendmail-extra-arguments '("--read-envelope-from")
|
|
message-sendmail-extra-arguments '("--read-envelope-from")
|
|
mail-envelope-from 'header)
|
|
mail-envelope-from 'header)
|
|
#+END_SRC
|
|
#+END_SRC
|
|
|
|
+
|
|
|
|
+We want to make sure notmuch opens in a full window
|
|
|
|
+#+begin_src emacs-lisp
|
|
|
|
+(after! notmuch
|
|
|
|
+ (set-popup-rule! "^\\*notmuch*" :ignore t)
|
|
|
|
+ )
|
|
|
|
+#+end_src
|
|
** Keybindings
|
|
** Keybindings
|
|
#+BEGIN_SRC emacs-lisp
|
|
#+BEGIN_SRC emacs-lisp
|
|
(map! :leader
|
|
(map! :leader
|
|
@@ -354,6 +361,11 @@ I once used LSP, but Emacs lsp-mode is flaky as hell. It works sometimes, but ot
|
|
#+BEGIN_SRC emacs-lisp
|
|
#+BEGIN_SRC emacs-lisp
|
|
;(add-hook 'python-mode-hook 'eglot-ensure)
|
|
;(add-hook 'python-mode-hook 'eglot-ensure)
|
|
#+END_SRC
|
|
#+END_SRC
|
|
|
|
+
|
|
|
|
+#+begin_src emacs-lisp
|
|
|
|
+(after! lsp
|
|
|
|
+ (setq lsp-file-watch-threshold nil))
|
|
|
|
+#+end_src
|
|
* Mastodon
|
|
* Mastodon
|
|
There's gotta be a way to get the token out of password-store for this.
|
|
There's gotta be a way to get the token out of password-store for this.
|
|
#+BEGIN_SRC emacs-lisp
|
|
#+BEGIN_SRC emacs-lisp
|