diff --git a/lua/config/gitsigns.lua b/lua/config/gitsigns.lua index 0a7294c..f272dcc 100644 --- a/lua/config/gitsigns.lua +++ b/lua/config/gitsigns.lua @@ -2,11 +2,11 @@ local gs = require("gitsigns") gs.setup { signs = { - add = { hl = "GitSignsAdd", text = "+", numhl = "GitSignsAddNr", linehl = "GitSignsAddLn" }, - change = { hl = "GitSignsChange", text = "~", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" }, - delete = { hl = "GitSignsDelete", text = "_", numhl = "GitSignsDeleteNr", linehl = "GitSignsDeleteLn" }, - topdelete = { hl = "GitSignsDelete", text = "‾", numhl = "GitSignsDeleteNr", linehl = "GitSignsDeleteLn" }, - changedelete = { hl = "GitSignsChange", text = "│", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" }, + add = { text = "+" }, + change = { text = "~" }, + delete = { text = "_" }, + topdelete = { text = "‾" }, + changedelete = { text = "│" }, }, word_diff = true, on_attach = function(bufnr)