first commit

This commit is contained in:
2025-06-14 20:26:14 +02:00
commit 1edfd60dbd
351 changed files with 34592 additions and 0 deletions

18
nvim/lua/plugins/tree.lua Normal file
View File

@@ -0,0 +1,18 @@
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
filesystem = {
filtered_items = {
hide_dotfiles = false, -- show dotfiles
hide_gitignored = false, -- show gitignored files
},
follow_current_file = {
enabled = true, -- focus on the current file in the tree
},
use_libuv_file_watcher = true, -- use libuv for file watching
},
window = {
width = 25,
},
},
}