chore(lualine.lua): improve code formatting by aligning comments and adding whitespace for better readability

feat(lualine.lua): add support for molten statusline configuration to enhance statusline customization
This commit is contained in:
David Ibia
2024-03-10 12:22:41 +01:00
parent 730b62e1da
commit db5156be5a

View File

@@ -1,5 +1,6 @@
local lualine = require("lualine")
local lazy_status = require("lazy.status") -- to configure lazy pending updates count
local molten_status = require("molten.status") -- to configure molten statusline
local colors = {
blue = "#65D1FF",
@@ -45,7 +46,6 @@ local my_lualine_theme = {
},
}
function GetPoetvStatusLine()
-- Get the poetv statusline
-- If poetv is not active, return empty string
@@ -80,6 +80,12 @@ lualine.setup({
},
sections = {
lualine_x = {
{
molten_status.initialized,
},
{
molten_status.kernels,
},
{
GetPoetvStatusLine,
cond = IsPoetvActive,