diff options
Diffstat (limited to '.doom.d')
-rw-r--r-- | .doom.d/config.el | 28 | ||||
-rw-r--r-- | .doom.d/custom.el | 24 | ||||
-rw-r--r-- | .doom.d/init.el | 8 |
3 files changed, 44 insertions, 16 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el index 9c43996..57c4313 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el @@ -42,7 +42,7 @@ ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! -(setq org-directory "~/Documents/org") +(setq org-directory "~/org") ;; Whenever you reconfigure a package, make sure to wrap your config in an @@ -77,6 +77,11 @@ ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; they are implemented. + + +;; Default settings +(setq browser-url-browser-function 'eww-browse-url) + ;; Dired (use-package dired :ensure nil @@ -88,24 +93,16 @@ "l" 'dired-find-file)) (custom-set-variables - ;; custom-set-variables was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(custom-safe-themes +'(custom-safe-themes '("97db542a8a1731ef44b60bc97406c1eb7ed4528b0d7296997cbb53969df852d6" default)) '(doc-view-continuous t) - '(org-agenda-files '("~/Documents/org/agenda.org")) + '(org-agenda-files '("~/org/agenda.org")) '(package-selected-packages '(pdf-tools org-anki anki-connect quelpa-use-package exwm ##)) '(warning-suppress-log-types '((erc) (erc))) '(warning-suppress-types '((color-theme) (erc) (erc)))) (custom-set-faces - ;; custom-set-faces was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(default ((t (:height 100 :family "hack")))) +'(default ((t (:height 100 :family "hack")))) '(org-level-1 ((t (:inherit outline-1 :height 1.3 :family "hack")))) '(org-level-2 ((t (:inherit outline-2 :height 1.2 :family "source code pro")))) '(org-level-3 ((t (:inherit outline-2 :height 1.2 :family "mono")))) @@ -130,3 +127,10 @@ (ad-activate 'linum-update) ;; Theme + + +;; Elfeed +;; +(global-set-key (kbd "C-x C-e") 'elfeed) +(require 'elfeed) +(setq-default elfeed-search-filter "@1-week-ago +unread ") diff --git a/.doom.d/custom.el b/.doom.d/custom.el index 3575437..5d54374 100644 --- a/.doom.d/custom.el +++ b/.doom.d/custom.el @@ -45,3 +45,27 @@ ;; (ad-activate 'linum-update) ;; ;; Theme +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(custom-safe-themes + '("97db542a8a1731ef44b60bc97406c1eb7ed4528b0d7296997cbb53969df852d6" default)) + '(doc-view-continuous t) + '(org-agenda-files '("~/Documents/org/agenda.org")) + '(package-selected-packages + '(elfeed-dashboard elfeed-goodies elfeed-web elfeed-tube-mpv elfeed-tube elfeed-org elfeed-score elfeed pdf-tools org-anki anki-connect quelpa-use-package exwm ##)) + '(warning-suppress-log-types '((erc) (erc))) + '(warning-suppress-types '((color-theme) (erc) (erc)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(default ((t (:height 100 :family "hack")))) + '(org-level-1 ((t (:inherit outline-1 :height 1.3 :family "hack")))) + '(org-level-2 ((t (:inherit outline-2 :height 1.2 :family "source code pro")))) + '(org-level-3 ((t (:inherit outline-2 :height 1.2 :family "mono")))) + '(org-level-4 ((t (:inherit outline-2 :height 1.0)))) + '(org-level-5 ((t (:inherit outline-2 :height 1.0))))) diff --git a/.doom.d/init.el b/.doom.d/init.el index cd9af2a..54e85b6 100644 --- a/.doom.d/init.el +++ b/.doom.d/init.el @@ -98,7 +98,7 @@ ;;lsp ; M-x vscode magit ; a git porcelain for Emacs ;;make ; run make tasks from Emacs - ;;pass ; password manager for nerds + pass ; password manager for nerds pdf ; pdf enhancements ;;prodigy ; FIXME managing external services & code builders ;;rgb ; creating color strings @@ -109,7 +109,7 @@ :os (:if IS-MAC macos) ; improve compatibility with macOS - ;;tty ; improve the terminal Emacs experience + tty ; improve the terminal Emacs experience :lang ;;agda ; types of types of types of types... @@ -189,9 +189,9 @@ :app ;;calendar ;;emms - ;;everywhere ; *leave* Emacs!? You must be joking + everywhere ; *leave* Emacs!? You must be joking irc ; how neckbeards socialize - ;;(rss +org) ; emacs as an RSS reader + (rss +org) ; emacs as an RSS reader twitter ; twitter client https://twitter.com/vnought :config |