From 9b1c7691ee2e6397a0e683f24f3f7860fd725dbf Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 29 Feb 2024 06:47:13 -0600 Subject: [PATCH] fix(nvim): manually specify diffview delete dim hl for no italics --- dots/.config/nvim/lua/plugins/configs/kanagawa.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua index 8df5b227..35f36ee8 100644 --- a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua +++ b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua @@ -194,6 +194,7 @@ return { { "TreesitterContext", { bg = colors.sumiInk0 } }, { "FloatTitle", { bg = "NONE" } }, { "DiffviewFilePanelTitle", { fg = colors.crystalBlue } }, + { "DiffviewDiffDeleteDim", { fg = function() return get_hl("Comment")().fg end } }, { "LspInlayHint", { fg = colors.springViolet2, bg = colors.winterBlue } }, { "@text", { fg = colors.fujiWhite } }, { "RainbowDelimiterRed", { fg = colors.peachRed } },