diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 2e51623..098d9b8 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -6,7 +6,7 @@ size = 16 [font.normal] family = "Victor Mono" -style = "Medium Italic" +style = "Medium Normal" [font.offset] x = 0 diff --git a/.config/doom/config.el b/.config/doom/config.el index 5f12063..222fef6 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -41,21 +41,8 @@ (add-hook mode (lambda () (display-line-numbers-mode 0)))) ;; Font Config -(set-face-attribute 'default nil - :family "Victor Mono" - :weight 'medium - :slant 'italic - :height 170) -(set-face-attribute 'fixed-pitch nil - :family "Victor Mono" - :weight 'medium - :slant 'italic - :height 1.0) -(set-face-attribute 'variable-pitch nil - :family "Victor Mono" - :weight 'medium - :slant 'italic - :height 1.0) +(setq doom-font (font-spec :family "Victor Mono" :size 22 :weight 'medium) + doom-variable-pitch-font (font-spec :family "Victor Mono" :size 22 :weight 'medium :slant 'italic)) (defun opal/org-font-setup () ;; Replace list hyphen with dot @@ -63,7 +50,7 @@ '(("^ *\\([-]\\) " (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))) - ;; Set faces for heading levels - all Victor Mono now + ;; Set heading sizes only (dolist (face '((org-level-1 . 1.2) (org-level-2 . 1.1) (org-level-3 . 1.05) @@ -72,21 +59,7 @@ (org-level-6 . 1.1) (org-level-7 . 1.1) (org-level-8 . 1.1))) - (set-face-attribute (car face) nil - :family "Victor Mono" - :weight 'medium - :slant 'italic - :height (cdr face))) - - ;; Set properties and scheduling faces - (set-face-attribute 'org-property-value nil :inherit 'default :height 150) - (set-face-attribute 'org-special-keyword nil :inherit 'default :height 150) - (set-face-attribute 'org-scheduled-today nil :inherit 'default :height 150) - (set-face-attribute 'org-drawer nil :inherit 'default :height 150) - (set-face-attribute 'org-date nil :inherit 'default :height 150) - (set-face-attribute 'org-ellipsis nil - :foreground "#928374" - :underline nil) + (set-face-attribute (car face) nil :height (cdr face))) ;; Ensure that all agenda items inherit default (custom-set-faces @@ -105,8 +78,8 @@ (defun opal/org-mode-setup () (org-indent-mode) - (visual-line-mode 1)) -;; (mixed-pitch-mode 1) + (visual-line-mode 1) + (variable-pitch-mode 1)) (use-package org :commands (org-capture org-agenda) @@ -139,8 +112,6 @@ ("EASY" . (:foreground "MediumSeaGreen" :weight bold)) ("DONE" . (:foreground "ForestGreen" :weight bold)))) - (add-hook 'org-mode-hook #'org-make-toc-mode) - (setq org-agenda-custom-commands '(("d" "GTD Dashboard" ;; Begin list of blocks: diff --git a/.config/doom/packages.el b/.config/doom/packages.el index 7a58c08..f555826 100644 --- a/.config/doom/packages.el +++ b/.config/doom/packages.el @@ -2,17 +2,12 @@ (package! exec-path-from-shell) (package! org-bullets) (package! visual-fill-column) -(package! org-make-toc) (package! ef-themes) (package! org-drill) -(package! pomm) (package! mixed-pitch) (package! guess-language) (package! nov) (package! google-translate) -(package! org-roam) -(package! eink-theme) -(package! notink-theme) ;; Remove (package! dirvish :disable t)