9 lines
150 B
Lua
9 lines
150 B
Lua
|
---@type LazySpec
|
||
|
return {
|
||
|
"nvim-neo-tree/neo-tree.nvim",
|
||
|
opts = function(_, opts)
|
||
|
opts.window.mappings["T"] = false
|
||
|
return opts
|
||
|
end,
|
||
|
}
|