aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/gitsigns.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/gitsigns.lua')
-rw-r--r--.config/nvim/lua/plugins/gitsigns.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/lua/plugins/gitsigns.lua b/.config/nvim/lua/plugins/gitsigns.lua
index dafeece..c7b0726 100644
--- a/.config/nvim/lua/plugins/gitsigns.lua
+++ b/.config/nvim/lua/plugins/gitsigns.lua
@@ -3,25 +3,25 @@ require("gitsigns").setup({
signs = {
--add = {
-- hl = "GitSignsAdd",
- -- text = "│",
+ -- text = "▍", --│
-- numhl = "GitSignsAddNr",
-- linehl = "GitSignsAddLn",
--},
--change = {
-- hl = "GitSignsChange",
- -- text = "│",
+ -- text = "▍", --│
-- numhl = "GitSignsChangeNr",
-- linehl = "GitSignsChangeLn",
--},
delete = {
hl = "GitSignsDelete",
- text = "_",
+ text = "▁", --_━─
numhl = "GitSignsDeleteNr",
linehl = "GitSignsDeleteLn",
},
topdelete = {
hl = "GitSignsDelete",
- text = "‾",
+ text = "▔", --‾
numhl = "GitSignsDeleteNr",
linehl = "GitSignsDeleteLn",
},