diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/org-custom.el | 12 | 
1 files changed, 5 insertions, 7 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el index 43dd0e7..2506cb4 100644 --- a/lisp/org-custom.el +++ b/lisp/org-custom.el @@ -11,7 +11,7 @@                  ((x-list-fonts "Monaco")   '(:font "Monaco"))                  ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))))           (base-font-color     (face-foreground 'default nil 'default)) -         (headline           `(:inherit default :weight normal :foreground ,base-font-color))) +         (headline           `(:inherit default :weight normal :foreground ,base-font-color :extend t :background nil :box nil)))      (custom-theme-set-faces       'user @@ -21,13 +21,11 @@       `(org-level-5 ((t (,@headline ,@variable-tuple))))       `(org-level-4 ((t (,@headline ,@variable-tuple :height 1.0))))       `(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1)))) -     `(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))) -     `(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5 :weight bold)))) -     `(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight:bold)))))) +     `(org-level-2 ((t (,@headline ,@variable-tuple :height 1.2 :weight bold)))) +     `(org-level-1 ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))) +     `(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))))) -  (variable-pitch-mode 1) -    (use-package org-bullets      :ensure t      :config @@ -35,7 +33,7 @@      )    (org-indent-mode 1) -  (visual-line-mode 1)) +  )  (setq org-directory "~/OrgRoam")  | 
