21 lines
379 B
Lua
21 lines
379 B
Lua
|
|
--if true then return {} end
|
||
|
|
|
||
|
|
return {
|
||
|
|
"windows.nvim",
|
||
|
|
opts = function(_, opts)
|
||
|
|
opts.autowidth = { enable = true }
|
||
|
|
return opts
|
||
|
|
end,
|
||
|
|
-- event = "WindowsEnableAutoWidth",
|
||
|
|
dependencies = {
|
||
|
|
"AstroNvim/astrocore",
|
||
|
|
opts = {
|
||
|
|
mappings = {
|
||
|
|
n = {
|
||
|
|
["<Leader>W"] = function() vim.cmd "WindowsMaximize" end,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}
|