Back to Astronvim

Disable Winbar

src/content/docs/recipes/disable_winbar.mdx

latest376 B
Original Source

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.

lua
return {
  "rebelot/heirline.nvim",
  opts = function(_, opts)
    opts.winbar = nil
  end,
}