forked from tefkah/doom-emacs-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.el
executable file
·28 lines (27 loc) · 1.28 KB
/
custom.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(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
'("47db50ff66e35d3a440485357fb6acb767c100e135ccdf459060407f8baea7b2" default))
'(org-agenda-files '("~/Notes/GTD/calendar.org"))
'(safe-local-variable-values
'((eval face-remap-add-relative 'org-level-4
'(default))
(eval face-remap-add-relative 'org-level-3
'(face-salient default))
(eval face-remap-add-relative 'org-level-2
'(face-strong face-salient))
(org-html-link-org-files-as-html))))
(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.
'(mode-line ((t (:family "Fira Code"))))
'(org-block ((t (:background nil))))
'(org-document-title ((t (:family "Noto Serif" :height 250 :weight medium))))
'(org-level-1 ((t (:height 1.6 :weight bold :slant normal))))
'(org-level-2 ((t (:height 1.4 :weight regular :slant normal))))
'(org-level-3 ((t (:height 1.3 :weight regular :slant italic)))))