From 6825ab382ba8410236a6a532dfc20940ad72ccbf Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Thu, 21 Oct 2021 05:27:46 -0500 Subject: [PATCH] fix: support new NvimTreeNormalNC hl group (#109) This was introduced in https://github.com/kyazdani42/nvim-tree.lua/pull/705. Following the hl groups fro this theme, I'm mapping both to the same color https://github.com/folke/tokyonight.nvim/blob/eede574f9ef57137e6d7e4bab37b09db636c5a56/lua/tokyonight/theme.lua#L49-L50 --- lua/tokyonight/theme.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 51faa2d..4e60917 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -315,6 +315,7 @@ function M.setup(config) -- NvimTree NvimTreeNormal = { fg = c.fg_sidebar, bg = c.bg_sidebar }, + NvimTreeNormalNC = { fg = c.fg_sidebar, bg = c.bg_sidebar }, NvimTreeRootFolder = { fg = c.blue, style = "bold" }, NvimTreeGitDirty = { fg = c.git.change }, NvimTreeGitNew = { fg = c.git.add },