use better char for gitsigns

This commit is contained in:
siduck76 2021-07-15 11:09:58 +05:30
parent c4a8ecf47f
commit 4a934e9a82
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ fg("cursorlinenr", white)
-- git signs ---
fg_bg("DiffAdd", nord_blue, "none")
fg_bg("DiffChange", one_bg2, "none")
fg_bg("DiffChange", grey, "none")
fg_bg("DiffModified", nord_blue, "none")
-- NvimTree

View File

@ -3,8 +3,8 @@ local M = {}
M.config = function()
require("gitsigns").setup {
signs = {
add = {hl = "DiffAdd", text = "", numhl = "GitSignsAddNr"},
change = {hl = "DiffChange", text = "", numhl = "GitSignsChangeNr"},
add = {hl = "DiffAdd", text = "", numhl = "GitSignsAddNr"},
change = {hl = "DiffChange", text = "", numhl = "GitSignsChangeNr"},
delete = {hl = "DiffDelete", text = "_", numhl = "GitSignsDeleteNr"},
topdelete = {hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr"},
changedelete = {hl = "DiffChange", text = "~", numhl = "GitSignsChangeNr"}