diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2024-08-26 18:07:56 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2024-08-26 18:07:56 +0200 |
| commit | 8c35ef85706c58b57824ee739630d9e1fa77b9e3 (patch) | |
| tree | 315dd9384020311fbe0f66f04013ee7e7693c66e | |
| parent | c1928c2c025deb29186ceb486775779cfd916fc7 (diff) | |
Emacs: actually ensure highlight-indentation is installed
| -rw-r--r-- | dot.emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 3370dce..8db3573 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -111,6 +111,9 @@ :init (add-hook 'python-base-mode-hook 'pet-mode -10)) +(use-package highlight-indentation + :hook python-base-mode) + (defun qsx-no-indent-tabs-mode () (setq indent-tabs-mode nil)) |
