diff --git a/lua/colors/hybrid.lua b/lua/colors/hybrid.lua index 08b0356..cd216e8 100644 --- a/lua/colors/hybrid.lua +++ b/lua/colors/hybrid.lua @@ -195,8 +195,10 @@ M.setup = function() hi("@tag.attribute", { fg = colors.orange.gui, ctermfg = colors.orange.cterm }) hi("@tag.delimiter", { fg = colors.foreground.gui, ctermfg = colors.foreground.cterm }) -- Set up highlight links separately - vim.api.nvim_set_hl(0, "diffRemoved", { link = "Constant" }) - vim.api.nvim_set_hl(0, "diffAdded", { link = "Special" }) + hi("diffRemoved", { fg = colors.red.gui, ctermfg = colors.red.cterm }) + hi("diffAdded", { fg = colors.green.gui, ctermfg = colors.green.cterm }) + -- vim.api.nvim_set_hl(0, "diffRemoved", { link = "Constant" }) + -- vim.api.nvim_set_hl(0, "diffAdded", { link = "Special" }) end return M