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
eede574f9e/lua/tokyonight/theme.lua (L49-L50)
This commit is contained in:
Santos Gallegos 2021-10-21 05:27:46 -05:00 committed by GitHub
parent 53d0576d25
commit 6825ab382b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -315,6 +315,7 @@ function M.setup(config)
-- NvimTree -- NvimTree
NvimTreeNormal = { fg = c.fg_sidebar, bg = c.bg_sidebar }, NvimTreeNormal = { fg = c.fg_sidebar, bg = c.bg_sidebar },
NvimTreeNormalNC = { fg = c.fg_sidebar, bg = c.bg_sidebar },
NvimTreeRootFolder = { fg = c.blue, style = "bold" }, NvimTreeRootFolder = { fg = c.blue, style = "bold" },
NvimTreeGitDirty = { fg = c.git.change }, NvimTreeGitDirty = { fg = c.git.change },
NvimTreeGitNew = { fg = c.git.add }, NvimTreeGitNew = { fg = c.git.add },