Closed
Description
Description
Highlight hidden config highlight all files and directories.

Neovim version
NVIM v0.10.1
Build type: Release
LuaJIT 2.1.1720049189
Operating system and version
macOS 13.2
Windows variant
No response
nvim-tree version
Clean room replication
return {
"nvim-tree/nvim-tree.lua", -- file explorer
dependencies = {
"nvim-tree/nvim-web-devicons", -- for file icons
},
config = function()
local setup, tree = pcall(require, "nvim-tree")
if not setup then
return
end
tree.setup({
renderer = {
highlight_hidden = "name",
},
})
end,
}
Steps to reproduce
- cargo new foo
- nvim foo
Expected behavior
No response
Actual behavior
No response