Added mbsync conf, extra opts for e-mail, rss

This commit is contained in:
ry
2021-10-30 00:22:13 -07:00
parent 2ea2644032
commit faa80b1520
4 changed files with 73 additions and 3 deletions
+42 -1
View File
@@ -365,7 +365,7 @@ Deft is a package that helps browse and filter plain text files. I use it to sea
(deft-directory org-roam-directory))
#+end_src
* Mu4e Configuration
* Mu4e (E-mail)
** Important Account information:
*** Opal.sh
- IMAP: imap.opal.sh -- 993
@@ -404,4 +404,45 @@ Deft is a package that helps browse and filter plain text files. I use it to sea
("/opal.sh/Sent" . ?s)
("/opal.sh/Trash" . ?t)
("/opal.sh/Drafts" . ?d))))
#+end_src
* ERC (IRC)
#+begin_src emacs-lisp
(setq erc-server "irc.libera.chat" ;sets default server
erc-nick "libry" ; Sets nick
erc-user-full-name "ry"
erc-track-shorten-start 8
erc-autojoin-channels-alist '(("irc.libera.chat" "#guix" "#emacs" "#systemcrafters"))
erc-kill-buffer-on-part t
erc-auto-query 'bury
erc-fill-column 120
erc-fill-function 'erc-fill-static
erc-fill-static-center 20
erc-track-visibility nil
erc-interpret-mirc-color t
erc-rename-buffers t
erc-track-exclude-server-buffer t)
#+end_src
* Elfeed (RSS)
#+begin_src emacs-lisp
(global-set-key (kbd "C-x w") 'elfeed) ; set elfeed keybind
(setq elfeed-feeds
'(; websites
"https://landchad.net/rss.xml"
"http://stallman.org/rss/rss.xml"
"https://guix.gnu.org/feeds/blog.atom"
; twitter/nitter
"https://nitter.net/fsf/rss"
; tube
"https://odysee.com/$/rss/@AlphaNerd:8")
#+end_src
* Magit (Git)
#+begin_src emacs-lisp
#+end_src