mirror of https://github.com/LazyVim/starter
13 lines
195 B
Lua
13 lines
195 B
Lua
|
return {
|
||
|
{
|
||
|
"nvim-neo-tree/neo-tree.nvim",
|
||
|
config = function()
|
||
|
require("neo-tree").setup({
|
||
|
window = {
|
||
|
position = "right"
|
||
|
}
|
||
|
})
|
||
|
end
|
||
|
}
|
||
|
}
|