diff options
| author | bard <[email protected]> | 2024-03-19 07:28:22 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-03-19 07:28:22 -0400 |
| commit | b14c5d0bb8ef91d51d525437d7dc7571a0f7cac0 (patch) | |
| tree | 7cc33f7d59357e9f88ae720632388f7e389ca1d2 /bard-emacs-modules/bard-emacs-package.el | |
| parent | cd7b761aedefc317173b7e5b500aa1bbef26589f (diff) | |
moved font and theme settings
Diffstat (limited to 'bard-emacs-modules/bard-emacs-package.el')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-package.el | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/bard-emacs-modules/bard-emacs-package.el b/bard-emacs-modules/bard-emacs-package.el index 7ddba36..05d3349 100644 --- a/bard-emacs-modules/bard-emacs-package.el +++ b/bard-emacs-modules/bard-emacs-package.el @@ -21,101 +21,6 @@ (require 'use-package) (setq use-package-always-ensure t) -;; Ef-themes -(use-package ef-themes - :ensure t - :config - (setq ef-themes-headings - '((1 variable-pitch 1.5) - (2 regular 1.3) - (3 1.1) - (agenda-date 1.3) - (agenda-structure variable-pitch light 1.8) - (t variable-pitch))) - (defun bard/ef-themes-hl-todo-faces () - "Configure `hl-todo-keyword-faces' with Ef themes colors. -The exact color values are taken from the active Ef theme." - (ef-themes-with-colors - (setq hl-todo-keyword-faces - `(("WAIT" . ,yellow) - ("TODO" . ,red) - ("NEXT" . ,blue) - ("THEM" . ,magenta) - ("PROG" . ,cyan-warmer) - ("OKAY" . ,green-warmer) - ("DONT" . ,yellow-warmer) - ("FAIL" . ,red-warmer) - ("BUG" . ,red-warmer) - ("DONE" . ,green) - ("NOTE" . ,blue-warmer) - ("KLUDGE" . ,cyan) - ("HACK" . ,cyan) - ("TEMP" . ,red) - ("FIXME" . ,red-warmer) - ("XXX+" . ,red-warmer) - ("KILLED" . ,cyan) - ("REVIEW" . ,red) - ("DEPRECATED" . ,yellow))))) - - (add-hook 'ef-themes-post-load-hook #'bard/ef-themes-hl-todo-faces) - (define-key global-map (kbd "M-<f5>") #'ef-themes-toggle) - (setq ef-themes-to-toggle '(ef-winter ef-frost)) - ;; (load-theme 'ef-winter) - ) - -(use-package modus-themes - :ensure t - :config - (setq modus-themes-headings - '((1 . (variable-pitch 1.5)) - (2 . (regular 1.3)) - (agenda-date . (1.3)) - (agenda-structure . (variable-pitch light 1.8)) - (t . (1.1)))) - (defun bard/modus-themes-hl-todo-faces () - "Configure `hl-todo-keyword-faces' with Modus themes colors. -The exact color values are taken from the active Ef theme." - (modus-themes-with-colors - (setq hl-todo-keyword-faces - `(("WAIT" . ,yellow) - ("TODO" . ,red) - ("NEXT" . ,blue) - ("THEM" . ,magenta) - ("PROG" . ,cyan-warmer) - ("OKAY" . ,green-warmer) - ("DONT" . ,yellow-warmer) - ("FAIL" . ,red-warmer) - ("BUG" . ,red-warmer) - ("DONE" . ,green) - ("NOTE" . ,blue-warmer) - ("KLUDGE" . ,cyan) - ("HACK" . ,cyan) - ("TEMP" . ,red) - ("FIXME" . ,red-warmer) - ("XXX+" . ,red-warmer) - ("REVIEW" . ,red) - ("KILLED" . ,cyan) - ("DEPRECATED" . ,yellow))))) - - (add-hook 'modus-themes-post-load-hook #'bard/modus-themes-hl-todo-faces) - (setq modus-themes-to-toggle '(modus-vivendi modus-operandi-tinted)) - (define-key global-map (kbd "<f5>") #'modus-themes-toggle) - (load-theme 'modus-vivendi t)) - -(use-package fontaine - :ensure t) - -(use-package rainbow-mode - :ensure t) - -(use-package mixed-pitch - :ensure t - ;; :hook - ;; (olivetti-mode . mixed-pitch-mode) - :config - (with-eval-after-load mixed-pitch-mode - (setq mixed-pitch-cursor-type nil))) - ;; Multiple Cursors (use-package multiple-cursors :ensure t) |
