From 2509a0c5b6e73882fd0cc9748a002a2cf17de034 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Thu, 16 Mar 2023 11:40:02 -0400 Subject: [PATCH] Customize line-spacing for bufler buffers --- init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.el b/init.el index 3312fe4..96a448f 100644 --- a/init.el +++ b/init.el @@ -870,6 +870,10 @@ DOCSTRING is an optional form that is discarded upon expansion." (external-package bufler "Presents open buffers in a grouped and organized menu." + :config + ;; Set `line-spacing' to a custom value in bufler buffers for some + ;; added visual separation between UI elements + (add-hook 'bufler-list-mode-hook (lambda () (setq-local line-spacing 0.15))) :custom (bufler-columns '("Name" "Path")) (bufler-list-group-separators '((0 . "\n")))