From 243d6b820ae891a10dce3cec16f52604e5ad9ed1 Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Tue, 16 May 2023 08:37:59 -0400 Subject: Decustomizing org --- lisp/org-custom.el | 62 +++++++++++++++++++++++++++--------------------------- 1 file 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) -- cgit v1.2.1