From e0e2fd262e236cae0d174851e0d6281e461bbb2b Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 14 Nov 2016 23:55:35 +0100 Subject: [PATCH] Install the highlight-indent-guides package --- customizations.el | 1 + init.el | 6 ++++++ 2 files changed, 7 insertions(+) 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")