From 2307a39f503e60bcb79fbf7ec85b4ceed2a4c4a3 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Fri, 15 Dec 2023 09:55:41 -0900 Subject: [PATCH] indent-bars good. prism-mode less good --- lisp/mitch-packages.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lisp/mitch-packages.el b/lisp/mitch-packages.el index 829f139..9a21d60 100644 --- a/lisp/mitch-packages.el +++ b/lisp/mitch-packages.el @@ -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") :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) ;;; mitch-packages.el ends here