more things

This commit is contained in:
2025-12-03 11:40:01 -05:00
parent 3089d6fdd1
commit 0ed577e815
10 changed files with 213 additions and 96 deletions

View File

@@ -32,7 +32,7 @@ execute_command()
vim.fn.timer_start(300000, execute_command)
-- Return status from cache
function pr_status()
local function pr_status()
--   
--    
--
@@ -40,19 +40,15 @@ function pr_status()
-- PASS COLOR - #3fb950
-- FAIL COLOR - #f85149
return cached_pr_status
:gsub("\n", "")
:gsub("fail", "")
:gsub("pass", "")
:gsub("pending", "")
:gsub("skipping", "")
:sub(1, -2)
:gsub("\n", "")
:gsub("fail", "")
:gsub("pass", "")
:gsub("pending", "")
:gsub("skipping", "")
:sub(1, -2)
end
require("lualine").setup({
options = {
theme = "catppuccin",
-- theme = "nord"
-- theme = "OceanicNext",
},
options = { theme = "catppuccin" },
sections = { lualine_c = { { pr_status } } },
})