chore: some improvements

This commit is contained in:
Maurice Grönwoldt 2025-10-16 11:11:00 +02:00
commit d69fb57aa6
No known key found for this signature in database
GPG key ID: FBB005FE74FEF996
10 changed files with 182 additions and 59 deletions

22
lua/plugins/tree.lua Normal file
View file

@ -0,0 +1,22 @@
return {
{
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup({})
end,
keys = {
{
"<leader>e",
function()
vim.cmd("NvimTreeToggle")
end,
desc = "File Explorer",
},
},
},
}