AutoYADM commit: 2024-11-18 00:15:03

This commit is contained in:
Daniel Fichtinger 2024-11-18 00:15:03 -05:00
parent 9359e3129b
commit 9968031468

View file

@ -1,3 +1,14 @@
local function format_func(filename)
if string.find(filename, ".md") and not string.find(filename, "README") then
return "Editing Markdown"
else
return "Editing " .. filename
end
end
return {
"andweeb/presence.nvim",
opts = {
show_time = false,
editing_text = format_func,
},
}