Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit c681fe6

Browse files
core: show hidden files in neotree by default
Show hidden files and directorys such at `.github` directory by default in neotree, without having to show them with `H` Hidden files & directories are visually different to others `H` still toggles the visibility of hidden files and directories
1 parent 76442eb commit c681fe6

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

plugins/core.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,21 @@ return {
9595
-- background_color = "#000000",
9696
},
9797
},
98+
99+
{
100+
"nvim-neo-tree/neo-tree.nvim",
101+
opts = {
102+
filesystem = {
103+
filtered_items = {
104+
-- when true, they will just be displayed differently than normal items
105+
visible = true,
106+
-- remains hidden even if visible is toggled to true, this overrides always_show
107+
never_show = {
108+
".DS_Store",
109+
"thumbs.db",
110+
},
111+
},
112+
},
113+
},
114+
},
98115
}

0 commit comments

Comments
 (0)