mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-23 09:18:51 +02:00
fix(edgy): dont edit help buffers in edgy
This commit is contained in:
parent
d31772f981
commit
ad6f6cfffd
1 changed files with 8 additions and 1 deletions
|
@ -16,7 +16,14 @@ return {
|
||||||
},
|
},
|
||||||
"Trouble",
|
"Trouble",
|
||||||
{ ft = "qf", title = "QuickFix" },
|
{ ft = "qf", title = "QuickFix" },
|
||||||
{ ft = "help", size = { height = 20 } },
|
{
|
||||||
|
ft = "help",
|
||||||
|
size = { height = 20 },
|
||||||
|
-- only show help buffers
|
||||||
|
filter = function(buf)
|
||||||
|
return vim.bo[buf].buftype == "help"
|
||||||
|
end,
|
||||||
|
},
|
||||||
{ ft = "spectre_panel", size = { height = 0.4 } },
|
{ ft = "spectre_panel", size = { height = 0.4 } },
|
||||||
},
|
},
|
||||||
left = {
|
left = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue