summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-06-06 16:24:32 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit09b1b1db20ab2d125886448435cee86194f49e0e (patch)
tree7e9038847be628dffd11d2f6c74751606c48b4a5 /dot_config/nvim/lua/plugins
parentdb2583917be9d440f751bfc3c43db24a5cc39a17 (diff)
fix(nvim): change signs in gitsigns
Diffstat (limited to 'dot_config/nvim/lua/plugins')
-rw-r--r--dot_config/nvim/lua/plugins/gitsigns.lua11
1 files changed, 6 insertions, 5 deletions
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,