Skip to content

Commit

Permalink
style: stylue check
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Chiu committed Oct 13, 2022
1 parent bb9d479 commit 81e82c6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lua/modules/ui/fidget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ require("fidget").setup({
end,
-- function to format each task line
task = function(task_name, message, percentage)
return string.format("%s%s [%s]", message, percentage and string.format(" (%s%%)", percentage) or "", task_name)
return string.format(
"%s%s [%s]",
message,
percentage and string.format(" (%s%%)", percentage) or "",
task_name
)
end,
},
-- sources = { -- Sources to configure
Expand Down

0 comments on commit 81e82c6

Please # to comment.