From ea52e57932e4908a3c0f28901a5e7a4f722c2f90 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 27 Oct 2021 16:28:50 +0200 Subject: [PATCH] Add the highlight-indentation module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is extremely useful for Python development; i wonder why i didn’t have it before. --- configuration.org | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configuration.org b/configuration.org index 0906f22..eddd3bd 100644 --- a/configuration.org +++ b/configuration.org @@ -2733,6 +2733,14 @@ Intended as a value for `bug-referecne-url-format'." (prog-mode . bug-reference-prog-mode)) #+END_SRC +** Highlight indentation + +#+begin_src emacs-lisp +(use-package highlight-indentation + :hook + (python-mode . highlight-indentation-mode)) +#+end_src + * Python related setup and ~use-package~ calls Because, well, that’s my job now. Of course it gets a dedicated section.