fix(lualine): only show statusline as soon as lualine loads

This commit is contained in:
Folke Lemaitre 2023-10-08 23:27:46 +02:00
parent 838ce85ad6
commit dd55cbdc99
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 12 additions and 10 deletions

View file

@ -18,6 +18,11 @@ return {
local opts = {
theme = "doom",
hide = {
-- this is taken care of by lualine
-- enabling this messes up the actual laststatus setting after loading a file
statusline = false,
},
config = {
header = vim.split(logo, "\n"),
center = {
@ -52,6 +57,7 @@ return {
end,
})
end
return opts
end,
},