emacs: remove stimmung-themes
1 file changed, 5 insertions(+), 16 deletions(-)
changed files
M user/settings/emacs/init.el → user/settings/emacs/init.el
@@ -74,23 +74,12 @@ ;; Don't ring the bell (setq ring-bell-function #'ignore) -(when (or (daemonp) +(use-package doom-themes + :if (or (daemonp) window-system) - (use-package doom-themes - :config (progn - (load-theme 'doom-one-light :noconfirm) - (doom-themes-org-config))) - (use-package stimmung-themes - :disabled t - :config (progn - (let ((original-stimmung-themes-string stimmung-themes-string)) - (defun toggle-stimmung-string-highlighting () - (interactive) - (let ((current-theme (car custom-enabled-themes))) - (setq stimmung-themes-string (if (eq stimmung-themes-string original-stimmung-themes-string) - 'none - original-stimmung-themes-string)) - (load-theme current-theme :noconfirm))))))) + :config (progn + (load-theme 'doom-one-light :noconfirm) + (doom-themes-org-config))) (let ((light-mode-theme 'doom-one-light) (dark-mode-theme 'doom-one))