17 lines
373 B
Lua
17 lines
373 B
Lua
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({
|
|
window = {
|
|
position = "left",
|
|
width = 50,
|
|
},
|
|
})
|
|
end
|
|
}
|