Move themes

This commit is contained in:
Maciej 2024-07-27 10:35:26 +03:00
parent e40c2e4bb3
commit bf90b046b8
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
13 changed files with 38 additions and 41 deletions

27
lisp/icejam-diminish.el Normal file
View file

@ -0,0 +1,27 @@
;;; icejam-diminish.el --- summary -*- lexical-binding: t; -*-
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;; diminish minor modes
;;; Code:
(use-package diminish :straight t)
(eval-after-load "flyspell" '(diminish 'flyspell-mode))
(eval-after-load "projectile" '(diminish 'projectile-mode))
(eval-after-load "flycheck" '(diminish 'flycheck-mode))
(eval-after-load "rainbow-mode" '(diminish 'rainbow-mode))
(eval-after-load "undo-tree" '(diminish 'undo-tree-mode))
(eval-after-load "company" '(diminish 'company-mode))
(eval-after-load "which-key" '(diminish 'which-key-mode))
(eval-after-load "eldoc" '(diminish 'eldoc-mode))
(eval-after-load "yasnippet" '(diminish 'yas-minor-mode))
(eval-after-load "whitespace" '(diminish 'whitespace-mode))
(eval-after-load "auto-revert-mode" '(diminish 'auto-revert-mode))
(provide 'icejam-diminish)
;;; icejam-diminish.el ends here