diff options
Diffstat (limited to '.doom.d')
-rw-r--r-- | .doom.d/config.el | 2 | ||||
-rw-r--r-- | .doom.d/custom.el | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el index 589e66f..89112ea 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el | |||
@@ -2,7 +2,7 @@ | |||
2 | user-mail-address "jdlugosz963@gmail.com") | 2 | user-mail-address "jdlugosz963@gmail.com") |
3 | 3 | ||
4 | (setq doom-theme 'doom-dracula) | 4 | (setq doom-theme 'doom-dracula) |
5 | (setq doom-font (font-spec :family "Mononoki Nerd Font Mono" :size 13)) | 5 | ; (setq doom-font (font-spec :family "Mononoki Nerd Font Mono" :size 13)) |
6 | 6 | ||
7 | (setq org-directory "~/org/") | 7 | (setq org-directory "~/org/") |
8 | 8 | ||
diff --git a/.doom.d/custom.el b/.doom.d/custom.el new file mode 100644 index 0000000..d20f917 --- /dev/null +++ b/.doom.d/custom.el | |||
@@ -0,0 +1,16 @@ | |||
1 | (custom-set-variables | ||
2 | ;; custom-set-variables was added by Custom. | ||
3 | ;; If you edit it by hand, you could mess it up, so be careful. | ||
4 | ;; Your init file should contain only one such instance. | ||
5 | ;; If there is more than one, they won't work right. | ||
6 | '(package-selected-packages '(pdf-tools))) | ||
7 | (custom-set-faces | ||
8 | ;; custom-set-faces was added by Custom. | ||
9 | ;; If you edit it by hand, you could mess it up, so be careful. | ||
10 | ;; Your init file should contain only one such instance. | ||
11 | ;; If there is more than one, they won't work right. | ||
12 | '(org-level-1 ((t (:inherit outline-1 :height 1.2)))) | ||
13 | '(org-level-2 ((t (:inherit outline-2 :height 1.1)))) | ||
14 | '(org-level-3 ((t (:inherit outline-3 :height 1.05)))) | ||
15 | '(org-level-4 ((t (:inherit outline-4 :height 1.025)))) | ||
16 | '(org-level-5 ((t (:inherit outline-5 :height 1.0))))) | ||