Floating window statusline override my buffer's statusline #882
winkee01
started this conversation in
Configuration
Replies: 1 comment 19 replies
-
That's how it works, since require("lualine").setup({
options = {
disable_filetypes = { "lspinfo" },
}
} Or create an extension and compose what you want your status line look like local lspinfo = {
filetypes = { "lspinfo" },
sections = {
lualine_c = { "buffers" },
},
}
require("lualune").setup({
extensions = { lspinfo },
}) Or make sure you don't use global statusline and add the file types vim.opt.laststatus = 2 -- you can ignore this as long as options.globalstatus = false (the default)
require("lualine").setup({
options = {
ignore_focus = { "lspinfo" },
}
} |
Beta Was this translation helpful? Give feedback.
19 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I type
:LspInfo
, it will pop up a floating window, and the status line for this floating window will also show, it overrides my buffer's statusline, how I can disable it and only show my buffer's statusline? because to me, it makes no sense to show a floating windows statusline.Beta Was this translation helpful? Give feedback.
All reactions