AutoYADM commit: 2024-12-03 20:30:03
This commit is contained in:
parent
a4051da7fa
commit
4caa9f7e01
2 changed files with 21 additions and 0 deletions
|
@ -50,6 +50,19 @@ local sections = {
|
||||||
require("noice").api.status.mode.get,
|
require("noice").api.status.mode.get,
|
||||||
cond = require("noice").api.status.mode.has,
|
cond = require("noice").api.status.mode.has,
|
||||||
},
|
},
|
||||||
|
function()
|
||||||
|
local ok, pomo = pcall(require, "pomo")
|
||||||
|
if not ok then
|
||||||
|
return ""
|
||||||
|
end
|
||||||
|
|
||||||
|
local timer = pomo.get_first_to_finish()
|
||||||
|
if timer == nil then
|
||||||
|
return ""
|
||||||
|
end
|
||||||
|
|
||||||
|
return " " .. tostring(timer)
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
lualine_b = { "branch", "diff" },
|
lualine_b = { "branch", "diff" },
|
||||||
lualine_c = { { "filename", path = 1 } },
|
lualine_c = { { "filename", path = 1 } },
|
||||||
|
|
|
@ -9,5 +9,13 @@ return {
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
-- See below for full list of options 👇
|
-- See below for full list of options 👇
|
||||||
|
notifiers = {
|
||||||
|
{
|
||||||
|
name = "Default",
|
||||||
|
opts = {
|
||||||
|
sticky = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue