This repository has been archived on 2023-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
nvim-config/lua/callbacks.lua
2022-11-01 17:34:57 +01:00

11 lines
212 B
Lua

goyo_unhide = true
function goyo_toggle()
if goyo_unhide == true then
require('lualine').hide({unhide=false})
goyo_unhide = false
else
require('lualine').hide({unhide=true})
goyo_unhide = true
end
end