summaryrefslogtreecommitdiff
path: root/lisp/org-custom.el
diff options
context:
space:
mode:
authorMatthew Kosarek <matthew.kosarek@vention.cc>2023-05-16 08:37:59 -0400
committerMatthew Kosarek <matthew.kosarek@vention.cc>2023-05-16 08:37:59 -0400
commit243d6b820ae891a10dce3cec16f52604e5ad9ed1 (patch)
treef367a441688a457885211faab30fb65eac37d37e /lisp/org-custom.el
parent3d3ad4a60438356e1bd91b39c82287390e84c791 (diff)
Decustomizing org
Diffstat (limited to 'lisp/org-custom.el')
-rw-r--r--lisp/org-custom.el62
1 files changed, 31 insertions, 31 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el
index 7666ecb..77a4b08 100644
--- a/lisp/org-custom.el
+++ b/lisp/org-custom.el
@@ -28,35 +28,34 @@
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5 :weight bold))))
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight:bold))))))
- (custom-theme-set-faces
- 'user
- '(org-block ((t (:inherit fixed-pitch))))
- '(org-code ((t (:inherit (shadow fixed-pitch)))))
- '(org-document-info ((t (:foreground "dark orange"))))
- '(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
- '(org-indent ((t (:inherit (org-hide fixed-pitch)))))
- '(org-link ((t (:foreground "royal blue" :underline t))))
- '(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
- '(org-property-value ((t (:inherit fixed-pitch))) t)
- '(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
- '(org-table ((t (:inherit fixed-pitch :foreground "#83a598"))))
- '(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
- '(org-verbatim ((t (:inherit (shadow fixed-pitch))))))
-
- (variable-pitch-mode 1)
-
- (use-package org-bullets
- :config
- (org-bullets-mode 1)
- )
+ ;; TODO: Temporarily commented out in favor of Material's design
+ ;; (custom-theme-set-faces
+ ;; 'user
+ ;; '(org-block ((t (:inherit fixed-pitch))))
+ ;; '(org-code ((t (:inherit (shadow fixed-pitch)))))
+ ;; '(org-document-info ((t (:foreground "dark orange"))))
+ ;; '(org-document-info-keyword ((t (:inherit (shadow fixed-pitch)))))
+ ;; '(org-indent ((t (:inherit (org-hide fixed-pitch)))))
+ ;; '(org-link ((t (:foreground "royal blue" :underline t))))
+ ;; '(org-meta-line ((t (:inherit (font-lock-comment-face fixed-pitch)))))
+ ;; '(org-property-value ((t (:inherit fixed-pitch))) t)
+ ;; '(org-special-keyword ((t (:inherit (font-lock-comment-face fixed-pitch)))))
+ ;; '(org-table ((t (:inherit fixed-pitch :foreground "#83a598"))))
+ ;; '(org-tag ((t (:inherit (shadow fixed-pitch) :weight bold :height 0.8))))
+ ;; '(org-verbatim ((t (:inherit (shadow fixed-pitch))))))
+
+ ;; (variable-pitch-mode 1)
+
+ ;; (use-package org-bullets
+ ;; :ensure t
+ ;; :config
+ ;; (org-bullets-mode 1)
+ ;; )
(org-indent-mode 1)
(visual-line-mode 1)
;; (setq org-blank-before-new-entry (quote ((heading . nil)
;; (plain-list-item . nil))))
-
- (require 'flyspell)
- (flyspell-mode 1)
)
(setq org-directory "~/OrgRoam")
@@ -69,13 +68,14 @@
(setq org-todo-keywords
'((sequence "TODO" "PROGRESS" "VERIFY" "|" "DONE" "ABANDONED")))
-(setq org-todo-keyword-faces
- '(("TODO" . (:foreground "RED"))
- ("PROGRESS" . "royal blue")
- ("VERIFY" . "#E0A526")
- ("ABANDONED" . "light gray")
- ("DONE" . "dark green"))
- )
+;; TODO: Temporarily commented out in favor of Material's design
+;; (setq org-todo-keyword-faces
+;; '(("TODO" . (:foreground "RED"))
+;; ("PROGRESS" . "royal blue")
+;; ("VERIFY" . "#E0A526")
+;; ("ABANDONED" . "light gray")
+;; ("DONE" . "dark green"))
+;; )
(setq org-return-follows-link t)