This commit is contained in:
2025-07-16 16:27:38 +02:00
commit 9e7149191e
14 changed files with 569 additions and 0 deletions

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

@@ -0,0 +1,22 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function()
require("neo-tree").setup({
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = false,
},
},
})
vim.keymap.set("n", "<C-n>", ":Neotree toggle<CR>", { noremap = true, silent = true })
end,
}