things things things

This commit is contained in:
aliaksandrkotau 2023-12-15 13:36:01 +01:00
parent f0be3cb7ca
commit 854755451f
7 changed files with 55 additions and 15 deletions

View file

@ -1,5 +1,3 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
@ -9,6 +7,13 @@ return {
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
require('neo-tree').setup {
filesystem = {
filtered_items = {
visible = true, -- This is what you want: If you set this to `true`, all "hide" just mean "dimmed out"
hide_dotfiles = false,
hide_gitignored = false,
}
}}
end,
}