Update Doom Emacs config

This commit is contained in:
Jeffrey Serio 2025-02-05 14:35:54 -06:00
parent 890793c094
commit 60cb973ba3

View File

@ -16,6 +16,9 @@
(setq projectile-project-root-files-bottom-up (setq projectile-project-root-files-bottom-up
(remove ".git" projectile-project-root-files-bottom-up))) (remove ".git" projectile-project-root-files-bottom-up)))
;; start with maximized frame
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;; Set fonts ;; Set fonts
(setq fontsize 18) (setq fontsize 18)
(setq monofontfam "JetBrainsMono Nerd Font Mono") (setq monofontfam "JetBrainsMono Nerd Font Mono")
@ -343,3 +346,11 @@ If point was already at that position, move point to beginning of line."
(setq elfeed-protocol-feeds '(("fever+https://hyperreal@freshrss.hyperreal.coffee" (setq elfeed-protocol-feeds '(("fever+https://hyperreal@freshrss.hyperreal.coffee"
:api-url "https://freshrss.hyperreal.coffee/api/fever.php" :api-url "https://freshrss.hyperreal.coffee/api/fever.php"
:password (password-store-get "freshrss")))) :password (password-store-get "freshrss"))))
;;;; open org files on startup
(find-file (file-name-concat org-directory "inbox.org"))
(find-file (file-name-concat org-directory "reading.org"))
(find-file (file-name-concat org-directory "computing.org"))
(find-file (file-name-concat org-directory "archiving.org"))