From b40e6d9f97ec6b84edf24bd7babcb6e7394acca0 Mon Sep 17 00:00:00 2001 From: srdusr Date: Wed, 10 May 2023 18:18:14 +0200 Subject: Removed whitespace --- lua/plugins/fidget.lua | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/lua/plugins/fidget.lua b/lua/plugins/fidget.lua index bf1c9d0..d401c5f 100644 --- a/lua/plugins/fidget.lua +++ b/lua/plugins/fidget.lua @@ -1,34 +1,34 @@ require("fidget").setup({ - event = "LspAttach", + --event = "LspAttach", text = { --spinner = "pipe", -- (Default) animation shown when tasks are ongoing --spinner = "hamburger", -- animation shown when tasks are ongoing --spinner = "dots_pulse", -- animation shown when tasks are ongoing - spinner = "dots", -- animation shown when tasks are ongoing - done = "✔", -- character shown when all tasks are complete - commenced = "Started", -- message shown when task starts - completed = "Completed", -- message shown when task completes + spinner = "dots", -- animation shown when tasks are ongoing + done = "✔", -- character shown when all tasks are complete + commenced = "Started", -- message shown when task starts + completed = "Completed", -- message shown when task completes }, fmt = { task = function(task_name, message, percentage) - if task_name == "diagnostics" then - return false - end - return string.format( - "%s%s [%s]", - message, - percentage and string.format(" (%s%%)", percentage) or "", - task_name - ) + if task_name == "diagnostics" then + return false + end + return string.format( + "%s%s [%s]", + message, + percentage and string.format(" (%s%%)", percentage) or "", + task_name + ) end, }, --sources = { -- Sources to configure - --["null-ls"] = { -- Name of source - --ignore = true, -- Ignore notifications from this source - --}, + --["null-ls"] = { -- Name of source + --ignore = true, -- Ignore notifications from this source + --}, --}, debug = { - logging = false, -- whether to enable logging, for debugging - strict = false, -- whether to interpret LSP strictly + logging = false, -- whether to enable logging, for debugging + strict = false, -- whether to interpret LSP strictly }, }) -- cgit v1.2.3