plugins.fidget.settings
Options provided to the require('fidget').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
notification = {
window = {
winblend = 0;
};
};
progress = {
display = {
done_icon = "";
done_ttl = 7;
format_message = lib.nixvim.mkRaw ''
function(msg)
if string.find(msg.title, "Indexing") then
return nil -- Ignore "Indexing..." progress messages
end
if msg.message then
return msg.message
else
return msg.done and "Completed" or "In progress..."
end
end
'';
};
};
text = {
spinner = "dots";
};
}
Declared by: