Skip to content

Commit

Permalink
fix(gitsigns)!: highlights are now defined separately
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamHsieh committed Jan 25, 2023
1 parent 2d844b8 commit 4958c92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vim/.config/nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"diffview.nvim": { "branch": "main", "commit": "168c8fc1e5729a00b7dd0317d393e6acf21faad7" },
"feline.nvim": { "branch": "master", "commit": "d48b6f92c6ccdd6654c956f437be49ea160b5b0c" },
"friendly-snippets": { "branch": "main", "commit": "7ab483b355613ef4f74189c7789278d765724d12" },
"gitsigns.nvim": { "branch": "main", "commit": "addd6e174a85fc1c4007ab0b65d77e6555b417bf" },
"gitsigns.nvim": { "branch": "main", "commit": "c52162b7b34a21bdc476425a4ab562c2f7bf1bb1" },
"hop.nvim": { "branch": "master", "commit": "90db1b2c61b820e230599a04fedcd2679e64bd07" },
"inc-rename.nvim": { "branch": "main", "commit": "48c4aa2be19f79e79b465a9bb37ee9fbe6c606f5" },
"indent-blankline.nvim": { "branch": "master", "commit": "c4c203c3e8a595bc333abaf168fcb10c13ed5fb7" },
Expand Down
6 changes: 3 additions & 3 deletions vim/.config/nvim/lua/plugins/gitsigns.lua
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
local M = {
"lewis6991/gitsigns.nvim",
lazy = true,
cmd = "GitSigns",
}

function M.config()
require("gitsigns").setup {
signs = {
add = { hl = "GitSignsAdd", text = "", numhl = "GitSignsAddNr", linehl = "GitSignsAddLn" },
change = { hl = "GitSignsChange", text = "", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" },
add = { text = "" },
change = { text = "" },
},
current_line_blame_opts = {
virt_text = true,
Expand Down

0 comments on commit 4958c92

Please sign in to comment.