Status when it's on has a space before the first character, it messes up my status line config.
OFF seems to be perfectly fine.
If anyone else is experiencing this with lualine, here's a temporary fix.
local function codeium_status()
local status = vim.fn["codeium#GetStatusString"]()
print("Codeium Status:", status)
if status == " ON" then
return "ON"
else
return status
end
end
-- ...
-- In lualine splits config
lualine_y = { { 'filetype' }, { codeium_status, color = { fg = "#58f5ab" } } }
Status when it's on has a space before the first character, it messes up my status line config. OFF seems to be perfectly fine. If anyone else is experiencing this with lualine, here's a temporary fix.