-
Is there some way to not show the (x hidden items) message: I tried settings neo-tree.nvim/lua/neo-tree/defaults.lua Lines 182 to 185 in 8613c45 but that just leaves me with empty lines in place of those messages. |
Beta Was this translation helpful? Give feedback.
Answered by
cseickel
Jul 4, 2022
Replies: 1 comment 1 reply
-
This should be controlled with the require("neo-tree").setup({
filesystem = {
filtered_items = {
visible = false, -- when true, they will just be displayed differently than normal items
force_visible_in_empty_folder = true, -- when true, hidden files will be shown if the root folder is otherwise empty
show_hidden_count = false, -- when true, the number of hidden items in each folder will be shown as the last entry
}
}
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
karlivory
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should be controlled with the
filesystem.filtered_items.show_hidden_count
option: