58 current 2025-04-30 20:36:21 25.05.20250424.f771eb4 6.12.24 *

This commit is contained in:
2025-04-30 20:36:29 -04:00
parent 9d10d65c63
commit ab9069d30b
3 changed files with 35 additions and 15 deletions

View File

@@ -44,10 +44,19 @@ vim.api.nvim_create_autocmd('VimEnter', {
callback = function()
local w = vim.g.goyo_if
if w then
vim.schedule(function()
vim.cmd('BarbarDisable')
end)
vim.schedule(hide)
end
end,
})
vim.api.nvim_create_autocmd('UIEnter', {
once = true,
group = grp,
callback = function()
local w = vim.g.goyo_if
if w then
vim.opt.showtabline = 0
vim.cmd('BarbarDisable')
end
end,
})