Face changes

This commit is contained in:
2026-08-26 08:04:19 -07:00
parent 3f3f6d953c
commit 8856d69d40
+6 -3
View File
@@ -1029,13 +1029,14 @@ environment variable accordingly."
"Allow avy commands with s and S in evil's normal and visual states." "Allow avy commands with s and S in evil's normal and visual states."
:keymap (make-sparse-keymap)) :keymap (make-sparse-keymap))
(define-globalized-minor-mode my/evil-avy-global-mode my/evil-avy-mode (define-globalized-minor-mode my/evil-avy-global-mode my/evil-avy-mode
(lambda () (my/evil-avy-mode 1)) my/evil-avy-mode
:group 'avy :group 'avy
:predicate '((not magit-mode dired-mode :predicate '((not magit-mode dired-mode
proced-mode mu4e-main-mode proced-mode mu4e-main-mode
mu4e-view-mode mu4e-headers-mode mu4e-view-mode mu4e-headers-mode
ibuffer-mode calc-mode calc-trail-mode ibuffer-mode calc-mode calc-trail-mode
gnus-group-mode) t)) gnus-group-mode)
t))
(use-package avy (use-package avy
:bind (("C-c C-j" . avy-resume) :bind (("C-c C-j" . avy-resume)
("M-s s" . evil-avy-goto-char-2) ("M-s s" . evil-avy-goto-char-2)
@@ -4121,7 +4122,9 @@ vising, and their major mode"
:config :config
(load-theme 'doom-molokai t) (load-theme 'doom-molokai t)
(doom-themes-org-config) (doom-themes-org-config)
(set-face-attribute 'font-lock-function-call-face nil :slant 'normal)) (dolist (face '(font-lock-function-call-face elisp-bound-variable
elisp-binding-variable))
(set-face-attribute face nil :slant 'normal)))
;; solaire-mode ;; solaire-mode
(use-package solaire-mode (use-package solaire-mode