Use elpaca for longer
All checks were successful
/ Test config on 20 (push) Successful in 29s

This commit is contained in:
Maciej 2024-10-30 08:18:17 +02:00
parent 1fe168ccc6
commit f21f3dcc77
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
25 changed files with 883 additions and 984 deletions

View file

@ -2,56 +2,52 @@
;;; Commentary:
;;; Code:
(use-package spaceline :ensure t :defer t)
(use-package spaceline :ensure t
:hook ((elpaca-after-init . spaceline-emacs-theme)))
(use-package base16-theme :ensure t
:init
(load-theme 'base16-atelier-forest-light t t)
(load-theme 'base16-harmonic16-light t t)
(load-theme 'base16-horizon-light t t)
(load-theme 'base16-humanoid-light t t)
(load-theme 'base16-zenburn t)
(load-theme 'base16-tomorrow-night-eighties t t)
(load-theme 'base16-darcula t t)
(load-theme 'base16-solarflare t t)
(load-theme 'base16-snazzy t t)
(load-theme 'base16-onedark t t)
(load-theme 'base16-gruvbox-dark-hard t t)
(load-theme 'modus-vivendi t t)
(load-theme 'base16-zenbones t t)
:config
;; Set themes for terminal mode
(setq base16-theme-256-color-source "colors"))
;; :config
;; (load-theme 'base16-atelier-forest-light t t)
;; (load-theme 'base16-harmonic16-light t t)
;; (load-theme 'base16-horizon-light t t)
;; (load-theme 'base16-humanoid-light t t)
;; (load-theme 'base16-zenburn t)
;; (load-theme 'base16-tomorrow-night-eighties t t)
;; (load-theme 'base16-darcula t t)
;; (load-theme 'base16-solarflare t t)
;; (load-theme 'base16-snazzy t t)
;; (load-theme 'base16-onedark t t)
;; (load-theme 'base16-gruvbox-dark-hard t t)
;; (load-theme 'modus-vivendi t t)
;; (load-theme 'base16-zenbones t t)
)
(use-package apropospriate-theme :ensure t
:init (load-theme 'apropospriate-light t t))
(use-package leuven-theme :ensure t
:init
(load-theme 'leuven t t))
(use-package modus-themes :ensure t)
(use-package darktooth-theme :ensure t
:init
(load-theme 'darktooth t t))
;; (use-package apropospriate-theme :ensure t
;; :config (load-theme 'apropospriate-light t t))
;; (use-package leuven-theme :ensure t
;; :config
;; (load-theme 'leuven t t))
;; (use-package modus-themes :ensure t )
;; (use-package darktooth-theme :ensure t
;; :config
;; (load-theme 'darktooth t t))
(use-package cyberpunk-theme :ensure t
:init
(load-theme 'cyberpunk t t))
(use-package color-theme-sanityinc-tomorrow :ensure t
:init
;; Dark themes
(load-theme 'sanityinc-tomorrow-eighties t t)
(load-theme 'sanityinc-tomorrow-night t t)
;; Light theme
(load-theme 'sanityinc-tomorrow-day t t))
(use-package zenburn-theme :ensure t
:init
(load-theme 'zenburn t t))
(use-package catppuccin-theme :ensure t
:init (load-theme 'catppuccin t t)
:config (setq catppuccin-flavor 'frappe))
;; (use-package color-theme-sanityinc-tomorrow :ensure t
;; :config
;; ;; Dark themes
;; (load-theme 'sanityinc-tomorrow-eighties t t)
;; (load-theme 'sanityinc-tomorrow-night t t)
;; ;; Light theme
;; (load-theme 'sanityinc-tomorrow-day t t))
;; (use-package zenburn-theme :ensure t
;; :config
;; (load-theme 'zenburn t t))
;; (use-package catppuccin-theme :ensure t
;; :custom
;; ((catpuccin-flavor 'frappe))
;; :config
;; (load-theme 'catppuccin t t))
;; Disable cursor blinking
(blink-cursor-mode 0)
@ -61,12 +57,10 @@
(setq base16-theme-256-color-source "colors")
(require 'icejam-base16-zenburn)
(require 'icejam-base16-harmonic-light)
(enable-theme 'icejam-base16-zenburn))
;; This is spacemacs modeline but I have disabled it for now.
;; It doesn't seem like I need it for anything.
;; (spaceline-emacs-theme)
(declare-function spaceline-emacs-theme nil)
(if (memq window-system '(x mac ns))
(enable-theme 'icejam-base16-zenburn)
(enable-theme 'icejam-base16-zenburn)))
(provide 'icejam-themes)
;;; icejam-themes.el ends here