From 0a2dd5b372fba7c191ce84078ab6e7a4d858b413 Mon Sep 17 00:00:00 2001 From: Webhooked Date: Sat, 7 Jun 2025 21:40:49 +0200 Subject: [PATCH] fix: NeoTree title color correction --- lua/kanso/highlights/plugins.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/kanso/highlights/plugins.lua b/lua/kanso/highlights/plugins.lua index 317858f..dc3281d 100644 --- a/lua/kanso/highlights/plugins.lua +++ b/lua/kanso/highlights/plugins.lua @@ -86,6 +86,10 @@ function M.setup(colors, config) }, NeoTreeRootName = { fg = theme.syn.identifier, bold = config.bold }, NeoTreeModified = { link = "String" }, + NeoTreeNormal = { link = "Normal" }, + NeoTreeNormalNC = { link = "Normal" }, + NeoTreeTitleBar = { link = "Title" }, + NeoTreeDimText = { fg = theme.ui.fg_dim }, NeoTreeGitModified = { fg = theme.vcs.changed }, NeoTreeGitAdded = { fg = theme.vcs.added }, NeoTreeGitDeleted = { fg = theme.vcs.removed },