diff options
| author | bard <[email protected]> | 2024-01-09 06:18:14 -0500 |
|---|---|---|
| committer | bard <[email protected]> | 2024-01-09 06:18:14 -0500 |
| commit | 3188effca42429909be3dc89fe7e796bdf2e570a (patch) | |
| tree | e6c9338f2fd908fd9fb4222f604b9c20b789f4ba /bard-emacs-modules/bard-emacs-package.el | |
| parent | f370cfbd985588daaed7f3b62c7f8f5933cf55b1 (diff) | |
cleanup
Diffstat (limited to 'bard-emacs-modules/bard-emacs-package.el')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-package.el | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/bard-emacs-modules/bard-emacs-package.el b/bard-emacs-modules/bard-emacs-package.el index 2e67386..b5b7887 100644 --- a/bard-emacs-modules/bard-emacs-package.el +++ b/bard-emacs-modules/bard-emacs-package.el @@ -52,14 +52,14 @@ The exact color values are taken from the active Ef theme." ("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) - - (load-theme 'ef-spring t) + (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-melissa-dark ef-melissa-light))) + (setq ef-themes-to-toggle '(ef-melissa-dark ef-melissa-light)) + (load-theme 'ef-melissa-dark t)) (use-package modus-themes :ensure t @@ -92,6 +92,7 @@ The exact color values are taken from the active Ef theme." ("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) @@ -122,6 +123,11 @@ The exact color values are taken from the active Ef theme." (use-package magit :ensure t) +(use-package magit-todos + :ensure t + :config + (magit-todos-mode 1)) + ;; Vertico completion (use-package vertico :ensure t @@ -297,11 +303,21 @@ The exact color values are taken from the active Ef theme." (diminish 'org-roam-ui-mode "ORUI") (diminish 'auto-revert-mode) (diminish 'eldoc-mode) - (diminish 'company-mode)) + (diminish 'company-mode) + (diminish 'whitespace-mode)) (use-package eshell-git-prompt :ensure t :config (eshell-git-prompt-use-theme 'robbyrussell)) +(use-package shell-pop + :ensure t) + +(use-package circe + :ensure t + :bind (("C-t" . shell-pop)) + :config + (setq shell-pop-term-shell "/bin/bash")) + (provide 'bard-emacs-package.el) |
