77 lines
1.6 KiB
Lua
77 lines
1.6 KiB
Lua
return function()
|
|
local trouble_filter = function(position)
|
|
return function(_, win)
|
|
return vim.w[win].trouble
|
|
and vim.w[win].trouble.position == position
|
|
and vim.w[win].trouble.type == "split"
|
|
and vim.w[win].trouble.relative == "editor"
|
|
and not vim.w[win].trouble_preview
|
|
end
|
|
end
|
|
|
|
require("modules.utils").load_plugin("edgy", {
|
|
close_when_all_hidden = true,
|
|
exit_when_last = true,
|
|
wo = { winbar = false },
|
|
keys = {
|
|
["q"] = false,
|
|
["Q"] = false,
|
|
["<C-q>"] = false,
|
|
["<A-j>"] = function(win)
|
|
win:resize("height", -2)
|
|
end,
|
|
["<A-k>"] = function(win)
|
|
win:resize("height", 2)
|
|
end,
|
|
["<A-h>"] = function(win)
|
|
win:resize("width", -2)
|
|
end,
|
|
["<A-l>"] = function(win)
|
|
win:resize("width", 2)
|
|
end,
|
|
},
|
|
bottom = {
|
|
{ ft = "qf", size = { height = 0.3 } },
|
|
{
|
|
ft = "toggleterm",
|
|
size = { height = 0.3 },
|
|
filter = function(_, win)
|
|
return vim.w[win].relative == ""
|
|
end,
|
|
},
|
|
{
|
|
ft = "help",
|
|
size = { height = 0.3 },
|
|
filter = function(buf)
|
|
return vim.bo[buf].buftype == "help"
|
|
end,
|
|
},
|
|
},
|
|
left = {
|
|
{
|
|
ft = "NvimTree",
|
|
pinned = true,
|
|
open = "NvimTreeOpen",
|
|
size = { width = 30 },
|
|
},
|
|
},
|
|
right = {
|
|
{
|
|
ft = "trouble",
|
|
pinned = true,
|
|
size = { height = 0.6, width = 0.3 },
|
|
open = "Trouble symbols toggle win.position=right",
|
|
filter = trouble_filter("right"),
|
|
},
|
|
{
|
|
ft = "trouble",
|
|
pinned = true,
|
|
collapsed = true,
|
|
size = { height = 0.4, width = 0.3 },
|
|
open = "Trouble lsp toggle win.position=right",
|
|
filter = trouble_filter("right"),
|
|
},
|
|
},
|
|
})
|
|
end
|