It has been so long, only zenburn works for me
All checks were successful
/ Test config on 20 (push) Successful in 27s

This commit is contained in:
Maciej 2024-08-18 09:40:51 +03:00
parent b83e55b79b
commit 97c02a2995
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 9 additions and 9 deletions

View file

@ -19,6 +19,6 @@ git clone git@github.com:maciej-szlosarczyk/emacs.git ~/.emacs.d
And then put the following lines into init.el And then put the following lines into init.el
```emacs ```emacs
(add-to-list 'load-path (concat user-emacs-directory "lisp"))
(require 'icejam-custom-init) (require 'icejam-custom-init)
(provide 'init)
``` ```

View file

@ -14,7 +14,7 @@
deft-default-extension "md" deft-default-extension "md"
;; NB! deft returns absolute paths as filenames, so ;; NB! deft returns absolute paths as filenames, so
;; ignore works slightly differently. ;; ignore works slightly differently.
deft-ignore-file-regexp "\\._[0-9-A-Z]+\\.md$" deft-ignore-file-regexp "\\._[0-9-A-Z_]+\\.md$"
deft-strip-summary-regexp (concat "\\(" deft-strip-summary-regexp (concat "\\("
"[\n\t]" ;; blank "[\n\t]" ;; blank
"\\|^:[[:ascii:]]+:.*$" ;; org-mode properties string "\\|^:[[:ascii:]]+:.*$" ;; org-mode properties string

View file

@ -6,7 +6,6 @@
(require 'icejam-keys-mode) (require 'icejam-keys-mode)
(use-package helpful :straight t :defer t) (use-package helpful :straight t :defer t)
(use-package ivy :straight t :defer t (use-package ivy :straight t :defer t
:config (setq ivy-use-virtual-buffers t ;; Display recent files in ivy-switch-buffer :config (setq ivy-use-virtual-buffers t ;; Display recent files in ivy-switch-buffer
ivy-count-format "(%d of %d) " ;; Current candidate count style ivy-count-format "(%d of %d) " ;; Current candidate count style
@ -15,8 +14,6 @@
(ivy-mode 1)) (ivy-mode 1))
(use-package swiper :straight t) (use-package swiper :straight t)
(use-package counsel :straight t :requires (helpful ivy swiper)) (use-package counsel :straight t :requires (helpful ivy swiper))
(with-eval-after-load 'counsel (with-eval-after-load 'counsel

View file

@ -15,9 +15,12 @@
(use-package modus-themes :straight t :defer t) (use-package modus-themes :straight t :defer t)
(use-package darktooth-theme :straight t :defer t) (use-package darktooth-theme :straight t :defer t)
(use-package cyberpunk-theme :straight t :defer t) (use-package cyberpunk-theme :straight t :defer t)
(use-package color-theme-sanityinc-tomorrow :straight t :defer t)
(use-package zenburn-theme :straight t :defer t)
(use-package catppuccin-theme :straight t :defer t (use-package catppuccin-theme :straight t :defer t
:config (setq catppuccin-flavor 'frappe)) :config (setq catppuccin-flavor 'frappe))
(use-package color-theme-sanityinc-tomorrow :straight t :defer t)
;; Disable cursor blinking ;; Disable cursor blinking
(blink-cursor-mode 0) (blink-cursor-mode 0)
@ -30,7 +33,6 @@
(load-theme 'base16-horizon-light t t) (load-theme 'base16-horizon-light t t)
(load-theme 'base16-humanoid-light t t) (load-theme 'base16-humanoid-light t t)
(load-theme 'sanityinc-tomorrow-day t t) (load-theme 'sanityinc-tomorrow-day t t)
(load-theme 'catppuccin t t)
;; Dark themes ;; Dark themes
(load-theme 'cyberpunk t t) (load-theme 'cyberpunk t t)
@ -44,6 +46,8 @@
(load-theme 'base16-gruvbox-dark-hard t t) (load-theme 'base16-gruvbox-dark-hard t t)
(load-theme 'modus-vivendi t t) (load-theme 'modus-vivendi t t)
(load-theme 'base16-zenbones t t) (load-theme 'base16-zenbones t t)
(load-theme 'zenburn t t)
(load-theme 'catppuccin t t)
(load-theme 'sanityinc-tomorrow-eighties t t) (load-theme 'sanityinc-tomorrow-eighties t t)
(load-theme 'sanityinc-tomorrow-night t t) (load-theme 'sanityinc-tomorrow-night t t)
@ -55,8 +59,7 @@
(declare-function spaceline-emacs-theme nil) (declare-function spaceline-emacs-theme nil)
(spaceline-emacs-theme) (spaceline-emacs-theme)
(enable-theme 'catppuccin) (enable-theme 'icejam-base16-zenburn)
;; (enable-theme 'icejam-base16-zenburn)
(provide 'icejam-themes) (provide 'icejam-themes)
;;; icejam-themes.el ends here ;;; icejam-themes.el ends here