From 09b1b1db20ab2d125886448435cee86194f49e0e Mon Sep 17 00:00:00 2001 From: Ibrahim Muftee Date: Thu, 6 Jun 2024 16:24:32 -0500 Subject: fix(nvim): change signs in gitsigns --- dot_config/nvim/lua/plugins/gitsigns.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'dot_config/nvim/lua') diff --git a/dot_config/nvim/lua/plugins/gitsigns.lua b/dot_config/nvim/lua/plugins/gitsigns.lua index 44cd9f7..ad6b8d0 100644 --- a/dot_config/nvim/lua/plugins/gitsigns.lua +++ b/dot_config/nvim/lua/plugins/gitsigns.lua @@ -8,11 +8,12 @@ return { delay = 1000 / 3, }, signs = { - add = { text = "+" }, - change = { text = "~" }, - delete = { text = "_" }, - topdelete = { text = "‾" }, - changedelete = { text = "~" }, + add = { text = '┃' }, + change = { text = '┃' }, + delete = { text = '_' }, + topdelete = { text = '‾' }, + changedelete = { text = '~' }, + untracked = { text = '┆' }, }, }) end, -- cgit v1.2.3