astro-nvim-v3 - archive v4

This commit is contained in:
huyjaky
2024-07-23 23:28:54 +07:00
parent 31b13443c7
commit 4f0bbbe21c
5 changed files with 32 additions and 41 deletions

28
lua/plugins/neo-tree.lua Normal file
View File

@@ -0,0 +1,28 @@
-- NOTE: always show hidden files and dot files
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
sources = {
"filesystem",
-- "buffers",
-- "git_status",
},
filesystem = {
filtered_items = {
visible = true,
show_hidden_count = true,
hide_dotfiles = true,
hide_gitignored = true,
hide_by_name = {
-- '.git',
-- '.DS_Store',
-- 'thumbs.db',
},
never_show = {},
},
},
enable_git_status = false,
enable_diagnostics = false,
git_status_async = false,
},
}