From d076a6f49ff68da28474dd86c34a01adf9114c52 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 13 May 2025 23:02:18 +0200 Subject: [PATCH] nvim/lua/user/plugins/ui/colorscheme.lua: nvim-tree highlights --- nvim/lua/user/plugins/ui/colorscheme.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/lua/user/plugins/ui/colorscheme.lua b/nvim/lua/user/plugins/ui/colorscheme.lua index c4d7718..0fe0444 100644 --- a/nvim/lua/user/plugins/ui/colorscheme.lua +++ b/nvim/lua/user/plugins/ui/colorscheme.lua @@ -88,6 +88,10 @@ local custom_highlights = function(colors) NeoTreeModified = { fg = colors.yellow }, NeoTreeWinSeparator = { link = "WinSeparator" }, + -- NvimTree + NvimTreeNormal = { bg = colors.mantle }, + NvimTreeWinSeparator = { bg = colors.mantle, fg = colors.surface0 }, + -- BlinkCmp BlinkCmpLabel = { link = 'CmpItemAbbr' }, BlinkCmpLabelMatch = { link = 'CmpItemAbbrMatch' },