mirror of https://github.com/LazyVim/starter
14 lines
223 B
Lua
14 lines
223 B
Lua
|
return {
|
||
|
"nvim-neo-tree/neo-tree.nvim",
|
||
|
config = {
|
||
|
window = {
|
||
|
position = "right",
|
||
|
mappings = {
|
||
|
l = "toggle_node",
|
||
|
L = "close_all_nodes",
|
||
|
["<esc>"] = false,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|