From f02bb2273aef894d5c8ea427c3179d93a5c6f585 Mon Sep 17 00:00:00 2001 From: Rahul Martim Juliato Date: Wed, 16 Jul 2025 18:58:32 -0300 Subject: [PATCH] feat(diff-hl): new symbols for the 'git-gutter' --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index c760a0b..c7a5313 100644 --- a/init.el +++ b/init.el @@ -801,14 +801,14 @@ (diff-hl-margin-mode))) ;; Show diff indicators in the margin. :custom (diff-hl-side 'left) ;; Set the side for diff indicators. - (diff-hl-margin-symbols-alist '((insert . "│") ;; Customize symbols for each change type. + (diff-hl-margin-symbols-alist '((insert . "┃") ;; Customize symbols for each change type. (delete . "-") - (change . "│") - (unknown . "?") + (change . "┃") + (unknown . "┆") (ignored . "i")))) -;;; Magit +;;; MAGIT ;; `magit' is a powerful Git interface for Emacs that provides a complete ;; set of features to manage Git repositories. With its intuitive interface, ;; you can easily stage, commit, branch, merge, and perform other Git