astro-nvim-v3 - uptostate

This commit is contained in:
huyjaky
2025-08-16 19:57:11 +07:00
parent 182ad7856a
commit 4b6f99b5a8
16 changed files with 248 additions and 228 deletions

View File

@@ -1,4 +1,3 @@
-- NOTE: always show hidden files and dot files
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
@@ -9,23 +8,23 @@ return {
filtered_items = {
visible = true,
show_hidden_count = true,
hide_dotfiles = true,
hide_gitignored = true,
hide_by_name = {
-- '.zip',
-- '.rar',
-- '.pdf',
-- '.DS_Store',
-- 'thumbs.db',
},
hide_dotfiles = false, -- always show dotfiles
hide_gitignored = false, -- always show gitignored
hide_by_name = {},
never_show = {},
never_show_by_pattern = { -- uses glob style patterns
"*.zip",
"*.rar",
"*.pdf",
-- "*.pdf",
},
},
},
window = {
mappings = {
["K"] = false, -- disable Shift+k
["H"] = false, -- disable Shift+k
},
},
enable_git_status = false,
enable_diagnostics = false,
git_status_async = false,