mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 09:48:59 +02:00
fix(edgy): dont layout toggleterm floats
This commit is contained in:
parent
448d502947
commit
f7b0c853cc
1 changed files with 7 additions and 1 deletions
|
@ -9,7 +9,13 @@ return {
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
bottom = {
|
bottom = {
|
||||||
{ ft = "toggleterm", size = { height = 0.4 } },
|
{
|
||||||
|
ft = "toggleterm",
|
||||||
|
size = { height = 0.4 },
|
||||||
|
filter = function(buf, win)
|
||||||
|
return vim.api.nvim_win_get_config(win).relative == ""
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
ft = "lazyterm",
|
ft = "lazyterm",
|
||||||
title = "LazyTerm",
|
title = "LazyTerm",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue