custom-hypr - add: nvim config

This commit is contained in:
huyjaky
2024-11-29 11:44:20 +07:00
parent ea3007a51e
commit 1380fa224b
56 changed files with 2878 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
-- NOTE: always show hidden files and dot files
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
source_selector = {
winbar = false,
},
filesystem = {
filtered_items = {
visible = true,
show_hidden_count = true,
hide_dotfiles = true,
hide_gitignored = true,
hide_by_name = {
-- '.zip',
-- '.rar',
-- '.pdf',
-- '.DS_Store',
-- 'thumbs.db',
},
never_show = {},
never_show_by_pattern = { -- uses glob style patterns
'*.zip',
'*.rar',
'*.pdf',
},
},
},
enable_git_status = false,
enable_diagnostics = false,
git_status_async = false,
},
}