aboutsummaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2024-03-25 20:12:00 +0100
committerdavidpkj <davidpenkow1@gmail.com>2024-03-25 20:14:29 +0100
commitf58f26f0dc4e65e7af4d720f50d1b1a724ac38fc (patch)
tree760aaedf7aa61fea4f724b04475c9b58f7579a12 /neovim/.config/nvim/lua
parent5b9f5d92c4b6961049179598a235db60bed6ecbf (diff)
Framework Laptop
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,
+ },
+ }
})