Upload files to "lua/plugins"

This commit is contained in:
2025-04-20 18:21:19 +00:00
parent 08032c2bb2
commit cb98c03d8e
5 changed files with 32 additions and 0 deletions

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

@@ -0,0 +1,16 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
},
lazy = false, -- neo-tree will lazily load itself
---@module "neo-tree"
---@type neotree.Config?
opts = {
-- fill any relevant options here
},
}