Skip to main content
Version: 2.8.0

Disable Winbar

By default AstroNvim enables the new winbar that comes with Neovim v0.8+. Some users may not like this behavior and prefer to not have a winbar at the top of each window. You can do this by overriding the heirline plugin configuration.

return {
plugins = {
heirline = function(config)
-- the first item is the statusline
-- the second item is the winbar
config[2] = nil
return config
end,
},
}