diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2022-05-04 02:01:39 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2022-05-04 02:01:39 +0200 |
commit | 1c0a9b1273d37a79a70136af2e3223a6e2502d69 (patch) | |
tree | d905dd8a1af251fea62423ab558a59631eb72340 | |
parent | d6455d46f370743a77ca45d44c2faacbb5597ef5 (diff) | |
download | dotfiles-1c0a9b1273d37a79a70136af2e3223a6e2502d69.tar.gz dotfiles-1c0a9b1273d37a79a70136af2e3223a6e2502d69.tar.bz2 dotfiles-1c0a9b1273d37a79a70136af2e3223a6e2502d69.zip |
font size and feeds
-rw-r--r-- | config/doom/config.org | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/doom/config.org b/config/doom/config.org index b926dfa..86bb058 100644 --- a/config/doom/config.org +++ b/config/doom/config.org @@ -9,7 +9,7 @@ * Editor ** Theme #+begin_src emacs-lisp -(setq doom-font (font-spec :family "DejaVuSansMono Nerd Font" :size 18 :weight 'semi-light)) +(setq doom-font (font-spec :family "DejaVu Sans Mono" :size 16 :weight 'semi-light)) (setq doom-theme 'doom-gruvbox) #+end_src This determines the style of line numbers in effect. If set to `nil', line @@ -193,7 +193,9 @@ this new window. (set-evil-initial-state! 'elfeed-search-mode 'emacs) (setq elfeed-feeds '("https://sachachua.com/blog/feed" - "https://www.howardism.org/index.xml"))) + "http://www.howardism.org/index.xml" + "https://guix.gnu.org/feeds/blog.atom" + "https://stevelosh.com/rss.xml"))) #+end_src |