indent-bars good. prism-mode less good

This commit is contained in:
MitchMarq42 2023-12-15 09:55:41 -09:00
parent 2d0bc7a619
commit 2307a39f50

View File

@ -1213,5 +1213,21 @@ This is redefined for use with `hypop' library because multiple Emacs frames may
:elpaca (:type git :host github :repo "jdtsmith/org-modern-indent") :elpaca (:type git :host github :repo "jdtsmith/org-modern-indent")
:hook (org-mode . org-modern-indent-mode)) :hook (org-mode . org-modern-indent-mode))
(use-package indent-bars
:elpaca (:type git :host github :repo "jdtsmith/indent-bars")
:custom
(indent-bars-prefer-character t)
(indent-bars-color '(highlight :face-bg t :blend 0.75))
(indent-bars-color-by-depth '(:palette ("lime" "yellow" "pink" "cyan") :blend 1))
(indent-bars-unspecified-fg-color "white")
(indent-bars-unspecified-bg-color "black")
(indent-bars-highlight-current-depth '(:face error :blend 0.7))
:hook (python-mode . indent-bars-mode))
;;; disabled because i cant make it look good
;; (use-package prism
;; :elpaca (:host github :repo "alphapapa/prism.el")
;; :custom (prism-colors '()))
(provide 'mitch-packages) (provide 'mitch-packages)
;;; mitch-packages.el ends here ;;; mitch-packages.el ends here