aboutsummaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'neovim/.config/nvim/lua')
-rw-r--r--neovim/.config/nvim/lua/plugins/fidget.lua18
1 files changed, 11 insertions, 7 deletions
diff --git a/neovim/.config/nvim/lua/plugins/fidget.lua b/neovim/.config/nvim/lua/plugins/fidget.lua
index f6564d5..ab8eae6 100644
--- a/neovim/.config/nvim/lua/plugins/fidget.lua
+++ b/neovim/.config/nvim/lua/plugins/fidget.lua
@@ -1,9 +1,13 @@
require("fidget").setup({
- text = {
- spinner = "dots", -- animation shown when tasks are ongoing
- done = "✓", -- character shown when all tasks are complete
- },
- window = {
- blend = 0, -- &winblend for the window
- },
+ progress = {
+ display = {
+ progress_icon = { pattern = "dots", period = 1 },
+ done_icon = "✓",
+ },
+ },
+ notification = {
+ window = {
+ winblend = 0,
+ },
+ }
})