aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/fidget.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/fidget.lua')
-rw-r--r--.config/nvim/lua/plugins/fidget.lua34
1 files changed, 0 insertions, 34 deletions
diff --git a/.config/nvim/lua/plugins/fidget.lua b/.config/nvim/lua/plugins/fidget.lua
deleted file mode 100644
index d401c5f..0000000
--- a/.config/nvim/lua/plugins/fidget.lua
+++ /dev/null
@@ -1,34 +0,0 @@
-require("fidget").setup({
- --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
- },
- 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
- )
- end,
- },
- --sources = { -- Sources to configure
- --["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
- },
-})