From 6f4a4163252073d2cfe4e9973dc83e8c4cfb5ef1 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 16 May 2024 07:13:20 +0100 Subject: [PATCH] Enable diff-hl borders Fixes display for diff-hl with base16 theme --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index e640e10..4bbd69c 100644 --- a/init.el +++ b/init.el @@ -530,11 +530,11 @@ :init (add-hook 'magit-pre-refresh-hook #'diff-hl-magit-pre-refresh) (add-hook 'magit-post-refresh-hook #'diff-hl-magit-post-refresh) - :config - (global-diff-hl-mode) :custom (diff-hl-disable-on-remote t) - (diff-hl-draw-borders nil)) + (diff-hl-draw-borders t) + :config + (global-diff-hl-mode)) (setq split-height-threshold nil split-width-threshold 160)