diff --git a/v2/nvim/lua/nairovim/plugins/lualine.lua b/v2/nvim/lua/nairovim/plugins/lualine.lua index ee1ba9b..a8ad478 100644 --- a/v2/nvim/lua/nairovim/plugins/lualine.lua +++ b/v2/nvim/lua/nairovim/plugins/lualine.lua @@ -28,16 +28,16 @@ local mcp_status_component = { end, color = function() if not vim.g.loaded_mcphub then - return { fg = "#6c7086" } -- Gray for not loaded + return "Comment" -- Gray for not loaded end local status = vim.g.mcphub_status or "stopped" if status == "ready" or status == "restarted" then - return { fg = "#50fa7b" } -- Green for connected + return "DiagnosticOk" -- Green for connected elseif status == "starting" or status == "restarting" then - return { fg = "#ffb86c" } -- Orange for connecting + return "DiagnosticWarn" -- Orange/yellow for connecting else - return { fg = "#ff5555" } -- Red for error/stopped + return "DiagnosticError" -- Red for error/stopped end end, }