From 6825ab382ba8410236a6a532dfc20940ad72ccbf Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Thu, 21 Oct 2021 05:27:46 -0500 Subject: [PATCH 1/2] 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 }, From e877fe752267f2a44275f7e2aa43df0ab19339b6 Mon Sep 17 00:00:00 2001 From: Kaiz Khatri <24286590+ful1e5@users.noreply.github.com> Date: Thu, 21 Oct 2021 16:02:23 +0530 Subject: [PATCH 2/2] docs: override colors inside vim config example (#104) --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 985a4ec..4ba4731 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,12 @@ let g:tokyonight_style = "night" let g:tokyonight_italic_functions = 1 let g:tokyonight_sidebars = [ "qf", "vista_kind", "terminal", "packer" ] +" Change the "hint" color to the "orange" color, and make the "error" color bright red +let g:tokyonight_colors = { + \ 'hint': 'orange', + \ 'error': '#ff0000' +\ } + " Load the colorscheme colorscheme tokyonight ```