From 8a759c75794b17cf29ffa46ce58ee8001a70d150 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 2 May 2021 10:13:28 +0200 Subject: [PATCH] feat: nvim tree deleted --- lua/tokyonight/colors.lua | 2 +- lua/tokyonight/theme.lua | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/tokyonight/colors.lua b/lua/tokyonight/colors.lua index 048a441..ee0cc6e 100644 --- a/lua/tokyonight/colors.lua +++ b/lua/tokyonight/colors.lua @@ -41,7 +41,7 @@ function M.setup(config) teal = "#1abc9c", red = "#f7768e", red1 = "#db4b4b", - git = { change = "#6183bb", add = "#449dab", delete = "#f7768e" }, + git = { change = "#6183bb", add = "#449dab", delete = "#914c54", conflict = "#bb7a61" }, } if config.style == "night" or vim.o.background == "light" then colors.bg = "#1a1b26" end util.bg = colors.bg diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 8ab8395..8c6359d 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -281,6 +281,7 @@ function M.setup(config) NvimTreeRootFolder = { fg = c.blue, style = "bold" }, NvimTreeGitDirty = { fg = c.git.change }, NvimTreeGitNew = { fg = c.git.add }, + NvimTreeGitDeleted = { fg = c.git.delete }, NvimTreeSpecialFile = { fg = c.purple, style = "underline" }, LspDiagnosticsError = { fg = c.error }, LspDiagnosticsWarning = { fg = c.warning },