diff options
author | Thanos Apollo <[email protected]> | 2023-02-01 10:42:11 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-02-01 10:42:11 +0200 |
commit | a2ae42add06845834cff532c1adfb3376d9c9a9b (patch) | |
tree | 75820ed2b23d61f2bbd946c8f8b36774d6c34427 | |
parent | 1610167987faa47c4903e64691d7bbeb90fe8bda (diff) |
init: Change fontsize, add email module, redo elfeed
-rw-r--r-- | .emacs.d/init.el | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c780369..578be8d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -109,6 +109,7 @@ to be installed.") ;(load "secret") (load "exwm-holyK-firefox") (load "org-config") +(load "email-module") ;(load "email-module") (load-file custom-file) ;; Load custom.el @@ -119,7 +120,7 @@ to be installed.") (start-polybar) (setq inhibit-startup-message nil) -(defvar apollo/default-font-size 130) +(defvar apollo/default-font-size 140) (set-face-attribute 'default nil :font "JetBrains Mono" :height 130) @@ -197,7 +198,7 @@ to be installed.") (defvar eshell-path-env (getenv "~/.local/bin")) -(load-theme 'doom-old-hope t) +(load-theme 'ef-apollon t) (doom-modeline-mode 1) (setq doom-modeline-height 35) @@ -389,8 +390,9 @@ to be installed.") ;;elfeed -(setq elfeed-search-feed-face ":foreground #fff :weight bold" - elfeed-feeds (quote +(require 'elfeed) +(require 'elfeed-goodies) +(setq elfeed-feeds (quote ( ("https://hackaday.com/blog/feed/" hackaday linux) ("https://opensource.com/feed" opensource linux) @@ -400,7 +402,10 @@ to be installed.") ("https://www.thelancet.com/rssfeed/ebiom_online.xml" LancetOnline ebiom) ("https://www.thelancet.com/rssfeed/lancet_online.xml" LancetOnline lancet) ("https://www.thelancet.com/rssfeed/lanmic_online.xml" LancetOnline Microbiology) - ("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linu) + ("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linux) + ("https://www.thanosapollo.com/public/feed.xml" Thanos) + ("https://protesilaos.com/news.xml" Protesilaos News) + ("https://protesilaos.com/codelog.xml" Proetesilaos Coding) ))) @@ -477,7 +482,8 @@ to be installed.") (eshell-syntax-highlighting-global-mode)) (use-package pdf-tools - :ensure t) + :ensure t + :mode ".pdf") ;;mastodon (setq mastodon-instance-url "https://emacs.ch" |