Skip to content

Commit

Permalink
fix(edgy): dont layout toggleterm floats
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 8, 2023
1 parent 448d502 commit f7b0c85
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lua/lazyvim/plugins/extras/ui/edgy.lua
Expand Up @@ -9,7 +9,13 @@ return {
},
opts = {
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",
title = "LazyTerm",
Expand Down

0 comments on commit f7b0c85

Please sign in to comment.