We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5182a commit abc44e4Copy full SHA for abc44e4
lua/cyberdream/extensions/gitsigns.lua
@@ -1,4 +1,5 @@
1
local M = {}
2
+local util = require("cyberdream.util")
3
4
--- Get extension configuration
5
--- @param opts Config
@@ -9,6 +10,16 @@ function M.get(opts, t)
9
10
GitSignsAdd = { fg = t.green },
11
GitSignsChange = { fg = t.orange },
12
GitSignsDelete = { fg = t.red },
13
+
14
+ GitSignsAddLn = { link = "DiffAdd" },
15
+ GitSignsChangeLn = { link = "DiffChange" },
16
+ GitSignsDeleteLn = { link = "DiffDelete" },
17
18
+ GitSignsAddInline = { bg = util.blend(t.bg_solid, t.green, 0.9) },
19
+ GitSignsChangeInline = { bg = util.blend(t.bg_solid, t.blue, 0.9) },
20
+ GitSignsDeleteInline = { bg = util.blend(t.bg_solid, t.red, 0.9) },
21
22
+ GitSignsCurrentLineBlame = { link = "LineNr" },
23
}
24
25
return highlights
0 commit comments