mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 07:28:50 -07:00
fix gitsigns highlights resetting after packersync | https://github.com/NvChad/NvChad/issues/1237
This commit is contained in:
parent
65d2e690a4
commit
0087b60c01
2 changed files with 29 additions and 29 deletions
|
|
@ -33,6 +33,35 @@ return {
|
||||||
PackerOutput = { fg = colors.red },
|
PackerOutput = { fg = colors.red },
|
||||||
PackerStatus = { fg = colors.blue },
|
PackerStatus = { fg = colors.blue },
|
||||||
|
|
||||||
|
-- diffs
|
||||||
|
DiffAdd = {
|
||||||
|
fg = colors.blue,
|
||||||
|
},
|
||||||
|
|
||||||
|
DiffAdded = {
|
||||||
|
fg = colors.green,
|
||||||
|
},
|
||||||
|
|
||||||
|
DiffChange = {
|
||||||
|
fg = colors.light_grey,
|
||||||
|
},
|
||||||
|
|
||||||
|
DiffChangeDelete = {
|
||||||
|
fg = colors.red,
|
||||||
|
},
|
||||||
|
|
||||||
|
DiffModified = {
|
||||||
|
fg = colors.orange,
|
||||||
|
},
|
||||||
|
|
||||||
|
DiffDelete = {
|
||||||
|
fg = colors.red,
|
||||||
|
},
|
||||||
|
|
||||||
|
DiffRemoved = {
|
||||||
|
fg = colors.red,
|
||||||
|
},
|
||||||
|
|
||||||
Normal = {
|
Normal = {
|
||||||
fg = theme.base05,
|
fg = theme.base05,
|
||||||
bg = theme.base00,
|
bg = theme.base00,
|
||||||
|
|
|
||||||
|
|
@ -67,33 +67,4 @@ return {
|
||||||
fg = theme.base0B,
|
fg = theme.base0B,
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Gitsigns.nvim
|
|
||||||
DiffAdd = {
|
|
||||||
fg = colors.blue,
|
|
||||||
},
|
|
||||||
|
|
||||||
DiffAdded = {
|
|
||||||
fg = colors.green,
|
|
||||||
},
|
|
||||||
|
|
||||||
DiffChange = {
|
|
||||||
fg = colors.light_grey,
|
|
||||||
},
|
|
||||||
|
|
||||||
DiffChangeDelete = {
|
|
||||||
fg = colors.red,
|
|
||||||
},
|
|
||||||
|
|
||||||
DiffModified = {
|
|
||||||
fg = colors.orange,
|
|
||||||
},
|
|
||||||
|
|
||||||
DiffDelete = {
|
|
||||||
fg = colors.red,
|
|
||||||
},
|
|
||||||
|
|
||||||
DiffRemoved = {
|
|
||||||
fg = colors.red,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue