starter/lua/plugins/neo-tree.lua

13 lines
195 B
Lua
Raw Normal View History

2024-02-08 23:27:46 +08:00
return {
{
"nvim-neo-tree/neo-tree.nvim",
config = function()
require("neo-tree").setup({
window = {
position = "right"
}
})
end
}
}