-
I'm trying to use use {
"hoob3rt/lualine.nvim",
requires = { "nvim-lua/lsp-status.nvim" },
config = function()
print("Setting up lualine!")
print(vim.inspect(require"lsp-status".status))
require("lualine").setup {
tabline = {
lualine_a = { "filename", require"lsp-status".status }
}
}
end
} The print statements are there for troubleshooting. They are executed, and the last print statement produces However, when I run this, it produces a blank tabline. BUT, if I now run I can't for the life of me think of any reason why this setup function doesn't work on startup, but it works if I trigger it again immediately after opening nvim, even in an empty window. I have no clue if this is a packer issue, a lualine issue or a lsp-status issue. I'm asking this here in case any of you can spot anything wrong with the packer snippet above. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Nope, turns out it's a bug in lualine. Sorry for the noise. |
Beta Was this translation helpful? Give feedback.
Nope, turns out it's a bug in lualine. Sorry for the noise.