diff --git a/customizations.el b/customizations.el index 6f81b1e..cb8ccbe 100644 --- a/customizations.el +++ b/customizations.el @@ -89,6 +89,7 @@ helm-smex helm-swoop helm-unicode + highlight-indent-guides hl-todo hungarian-holidays hungry-delete diff --git a/init.el b/init.el index 4f310c8..c77c358 100644 --- a/init.el +++ b/init.el @@ -872,6 +872,12 @@ (setq eshell-highlight-prompt nil eshell-prompt-function 'epe-theme-lambda))) +(use-package highlight-indent-guides + :ensure t + :config + (add-hook 'prog-mode-hook 'highlight-indent-guides-mode) + (setq highlight-indent-guides-method 'character)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")