1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/plugins/ui/colorscheme.lua: fix indent lines and whitespace highlight

This commit is contained in:
Henrik Hautakoski 2025-09-29 15:18:47 +02:00
parent fad0842b76
commit 0ddd0309ca

View file

@ -25,7 +25,7 @@ local custom_highlights = function(colors)
WhichKeyFloat = { link = "Pmenu" },
-- indent lines
IblScope = { fg = colors.surface0 },
IblIndent = { link = "NonText" },
-- Search matches
IncSearch = { bg = colors.yellow },
@ -161,6 +161,10 @@ local custom_highlights = function(colors)
TodoCommentsHint = { fg = colors.sapphire },
TodoCommentsTest = { fg = colors.pink },
-- Text
NonText = { fg = colors.surface0 },
Whitespace = { link = "NonText" },
-- Syntax
PreProc = { fg = colors.mauve },
Operator = { fg = colors.flamingo },