diff options
Diffstat (limited to 'emacs.el')
-rw-r--r-- | emacs.el | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -36,3 +36,23 @@ (add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode)) (setq-default nov-variable-pitch nil) + +;; GNUS Configuration +(setq-default gnus-auto-select-first nil + gnus-select-method '(nnnil "") + gnus-secondary-select-methods '((nnimap "outlook" + (nnimap-address "outlook.office365.com") + (nnimap-server-port 993) + (nnimap-stream ssl) + (nnimap-authinfo-file "~/.authinfo")) + (nnimap "home" + (nnimap-address "serwer1930490.home.pl") + (nnimap-server-port 993) + (nnimap-stream ssl) + (nnimap-authinfo-file "~/.authinfo"))) + nnmail-split-method 'nnmail-split-fancy + nnmail-split-fancy '(| "normal")) +(add-hook 'gnus-group-mode-hook 'gnus-topic-mode) + +;; Org Configuration +(setq-default org-contacts-files '("~/Dokumenty/UWM/filia w Ełku/Samorząd 2022/starostowie.org")) |