mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 01:54:42 -05:00
16 lines
367 B
Lua
16 lines
367 B
Lua
return {
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim", -- NVim File Tree
|
|
lazy = false,
|
|
priority = 1000,
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons",
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
config = function()
|
|
require("config.plugin.neo-tree")
|
|
end,
|
|
},
|
|
}
|