From cfab8c131b48208711d25031e57ae8a8639be890 Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Fri, 20 Feb 2026 18:57:25 -0500 Subject: [PATCH] blame --- lua/plugins/git.lua | 20 ++++++++++---------- plugin/options.lua | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua index fafed3b..515d71c 100644 --- a/lua/plugins/git.lua +++ b/lua/plugins/git.lua @@ -56,18 +56,18 @@ return { event = { "BufReadPre", "BufNewFile" }, opts = { signs = { - add = { text = "│" }, - change = { text = "│" }, - delete = { text = "_" }, - topdelete = { text = "‾" }, - changedelete = { text = "│" }, + add = { text = "██" }, + change = { text = "██" }, + delete = { text = "▄▄" }, + topdelete = { text = "▀▀" }, + changedelete = { text = "██" }, }, signs_staged = { - add = { text = "┃" }, - change = { text = "┃" }, - delete = { text = "_" }, - topdelete = { text = "‾" }, - changedelete = { text = "┃" }, + add = { text = "▓▓" }, + change = { text = "▓▓" }, + delete = { text = "▄▄" }, + topdelete = { text = "▀▀" }, + changedelete = { text = "▓▓" }, }, signs_staged_enable = true, signcolumn = true, diff --git a/plugin/options.lua b/plugin/options.lua index 60c4227..2d172e8 100644 --- a/plugin/options.lua +++ b/plugin/options.lua @@ -22,7 +22,7 @@ o.incsearch = true o.termguicolors = true o.cursorline = true o.scrolloff = 8 -o.signcolumn = "yes" +o.signcolumn = "yes:2" o.wrap = false o.showmode = false o.laststatus = 3