[emacs] Update notmuch pop ups

This commit is contained in:
2020-10-26 00:27:49 -04:00
parent 4c0fec3cec
commit 0a4b24ba94
3 changed files with 25 additions and 56 deletions

View File

@ -109,14 +109,14 @@ Right now, just make sure I can connect to my local Mopidy server via MPDel.
* RSS
Here were going to use TinyTinyRSS as a backend store for our RSS feeds.
#+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-log-level 'debug)
(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
Then welll 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")
mail-envelope-from 'header)
#+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
#+BEGIN_SRC emacs-lisp
(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
;(add-hook 'python-mode-hook 'eglot-ensure)
#+END_SRC
#+begin_src emacs-lisp
(after! lsp
(setq lsp-file-watch-threshold nil))
#+end_src
* Mastodon
There's gotta be a way to get the token out of password-store for this.
#+BEGIN_SRC emacs-lisp