my neovim configuration

update gitsigns config

+6 -42
+6 -42
lua/ptero/configs/gitsigns.lua
··· 6 6 7 7 gitsigns.setup({ 8 8 signs = { 9 - add = { 10 - hl = "GitSignsAdd", 11 - text = icons.git.LineAdded, 12 - numhl = "GitSignsAddNr", 13 - linehl = "GitSignsAddLn", 14 - }, 15 - change = { 16 - hl = "GitSignsChange", 17 - text = icons.git.LineModified, 18 - numhl = "GitSignsChangeNr", 19 - linehl = "GitSignsChangeLn", 20 - }, 21 - delete = { 22 - hl = "GitSignsDelete", 23 - text = icons.git.LineRemoved, 24 - numhl = "GitSignsDeleteNr", 25 - linehl = "GitSignsDeleteLn", 26 - }, 27 - topdelete = { 28 - hl = "GitSignsDelete", 29 - text = icons.ui.Triangle, 30 - numhl = "GitSignsDeleteNr", 31 - linehl = "GitSignsDeleteLn", 32 - }, 33 - changedelete = { 34 - hl = "GitSignsChange", 35 - text = icons.ui.BoldLineLeft, 36 - numhl = "GitSignsChangeNr", 37 - linehl = "GitSignsChangeLn", 38 - }, 39 - untracked = { 40 - hl = "GitSignsAdd", 41 - text = icons.git.LineDeleted, 42 - numhl = "GitSignsAddNr", 43 - linehl = "GitSignsAddLn", 44 - }, 9 + add = { text = icons.git.LineAdded }, 10 + change = { text = icons.git.LineModified }, 11 + delete = { text = icons.git.LineRemoved }, 12 + topdelete = { text = icons.ui.Triangle }, 13 + changedelete = { text = icons.ui.BoldLineLeft }, 14 + untracked = { text = icons.git.LineDeleted }, 45 15 }, 46 16 signcolumn = true, 47 17 numhl = false, ··· 59 29 delay = 1000, 60 30 ignore_whitespace = false, 61 31 }, 62 - current_line_blame_formatter_opts = { 63 - relative_time = false, 64 - }, 65 32 sign_priority = 6, 66 33 update_debounce = 100, 67 34 status_formatter = nil, ··· 72 39 relative = "cursor", 73 40 row = 0, 74 41 col = 1, 75 - }, 76 - yadm = { 77 - enable = false, 78 42 }, 79 43 }) 80 44