20 lines
331 B
Lua
20 lines
331 B
Lua
local opts = {
|
|
text = {
|
|
spinner = "dots",
|
|
done = "",
|
|
commenced = "",
|
|
completed = "",
|
|
},
|
|
window = {
|
|
blend = 0,
|
|
border = "rounded",
|
|
},
|
|
}
|
|
if vim.g.neovide then opts.window.blend = 50 end
|
|
|
|
return {
|
|
"j-hui/fidget.nvim",
|
|
tag = "legacy",
|
|
opts = opts,
|
|
}
|