File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
lua/cyberdream/extensions Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 11local M = {}
2+ local util = require (" cyberdream.util" )
23
34--- Get extension configuration
45--- @param opts Config
@@ -9,6 +10,16 @@ function M.get(opts, t)
910 GitSignsAdd = { fg = t .green },
1011 GitSignsChange = { fg = t .orange },
1112 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" },
1223 }
1324
1425 return highlights
You can’t perform that action at this time.
0 commit comments