feat: nvim tree deleted

This commit is contained in:
Folke Lemaitre 2021-05-02 10:13:28 +02:00
parent 5ba1e9f9fa
commit 8a759c7579
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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 },