refactor(nvim): improve fold colors

This commit is contained in:
Price Hiller 2023-02-03 17:40:02 -06:00
parent 507e346d3a
commit cb2b89df79
2 changed files with 3 additions and 2 deletions

View File

@ -119,7 +119,8 @@ require("kanagawa").setup({
NoiceCmdlineIconIncRename = { fg = colors.peachRed }, NoiceCmdlineIconIncRename = { fg = colors.peachRed },
NoiceCmdlinePopupdBorderIncRename = { fg = colors.peachRed }, NoiceCmdlinePopupdBorderIncRename = { fg = colors.peachRed },
Folded = { bg = colors.winterBlue } Folded = { bg = colors.waveBlue1 },
UfoFoldedBg = { bg = colors.springViolet1 }
}, },
}) })

View File

@ -32,7 +32,7 @@ local handler = function(virtText, lnum, endLnum, width, truncate)
end end
curWidth = curWidth + chunkWidth curWidth = curWidth + chunkWidth
end end
table.insert(newVirtText, {suffix, "CursorLineNR"}) table.insert(newVirtText, {suffix, "@conditional"})
return newVirtText return newVirtText
end end