Remove some leftover catppuccin theme references
This commit is contained in:
parent
24697ac19a
commit
c60d25364b
19
init.el
19
init.el
|
@ -162,11 +162,6 @@
|
||||||
(use-package eshell
|
(use-package eshell
|
||||||
:bind (("C-c t e" . eshell)))
|
:bind (("C-c t e" . eshell)))
|
||||||
|
|
||||||
(use-package shr
|
|
||||||
:config
|
|
||||||
(require 'catppuccin-theme)
|
|
||||||
(set-face-attribute 'shr-text nil :foreground (catppuccin-get-color 'text)))
|
|
||||||
|
|
||||||
(use-package eww
|
(use-package eww
|
||||||
:defer t
|
:defer t
|
||||||
:custom
|
:custom
|
||||||
|
@ -645,18 +640,12 @@ Uses `my/projects-directory' to find correct directory"
|
||||||
(setq org-attach-id-dir (expand-file-name "data/" org-directory)))
|
(setq org-attach-id-dir (expand-file-name "data/" org-directory)))
|
||||||
|
|
||||||
(use-package org-faces
|
(use-package org-faces
|
||||||
:after (org catppuccin-theme)
|
:after org
|
||||||
:config
|
:config
|
||||||
;; Ensure tables and src blocks use fixed-pitch font.
|
;; Ensure tables and src blocks use fixed-pitch font.
|
||||||
(set-face-attribute 'org-block nil
|
(set-face-attribute 'org-block nil :inherit 'fixed-pitch)
|
||||||
:inherit 'fixed-pitch
|
(set-face-attribute 'org-code nil :inherit 'fixed-pitch)
|
||||||
:foreground (catppuccin-get-color 'text))
|
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
|
||||||
(set-face-attribute 'org-code nil
|
|
||||||
:inherit 'fixed-pitch
|
|
||||||
:foreground (catppuccin-get-color 'subtext0))
|
|
||||||
(set-face-attribute 'org-table nil
|
|
||||||
:inherit 'fixed-pitch
|
|
||||||
:foreground (catppuccin-get-color 'subtext1))
|
|
||||||
;; Let quote and verse blocks use variable-pitch font, if configured
|
;; Let quote and verse blocks use variable-pitch font, if configured
|
||||||
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
|
(set-face-attribute 'org-quote nil :inherit 'variable-pitch)
|
||||||
(set-face-attribute 'org-verse nil :inherit 'variable-pitch))
|
(set-face-attribute 'org-verse nil :inherit 'variable-pitch))
|
||||||
|
|
Loading…
Reference in a new issue