Replies: 2 comments
-
You can prevent winbar placement for most plugin windows using the following: require("heirline").setup({
...
opts = {
disable_winbar_cb = function(args)
local buf = args.buf
local buftype = vim.tbl_contains({ "prompt", "nofile", "help", "quickfix" }, vim.bo[buf].buftype)
local filetype = vim.tbl_contains({ "gitcommit", "fugitive", "Trouble", "packer", "dashboard" }, vim.bo[buf].filetype)
return buftype or filetype
end,
},
}) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you 👍 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have some issues with winbar on Telescope Prompt with ivy theme. when I open telescope, winbar always shows on top of the window.
Beta Was this translation helpful? Give feedback.
All reactions