nvim-tree for zenflesh

This commit is contained in:
Michael Chris Lopez
2021-09-25 17:45:16 +08:00
parent 001f8d7f47
commit d2c3c6a71e
4 changed files with 34 additions and 0 deletions

View File

@@ -263,6 +263,8 @@ local theme = lush(function()
diffFile { fg = p.wood, gui = "bold" },
diffLine { fg = p.blossom, gui = "bold" },
diffIndexLine { fg = p.wood },
gitcommitOverflow { WarningMsg },
markdownH1 { Statement, gui = "bold,underline" },
markdownH2 { Statement },

View File

@@ -355,6 +355,17 @@ local theme = lush(function()
TroubleNormal { Function },
TroubleText { Function },
TroubleSource { Constant },
NvimTreeNormal { NormalFloat },
NvimTreeVertSplit { fg = "bg" },
NvimTreeCursorLine { bg = StatusLineNC.bg },
NvimTreeCursorColumn { NvimTreeCursorLine },
NvimTreeRootFolder { fg = p.water, gui = "bold" },
NvimTreeSymlink { fg = p.water },
NvimTreeGitDirty { diffChanged },
NvimTreeGitNew { diffAdded },
NvimTreeGitDeleted { diffRemoved },
NvimTreeSpecialFile { fg = p.blossom, gui = "underline" },
}
end)
-- stylua: ignore end