vim: add plugin 'j-hui/fidget.nvim'

This commit is contained in:
Fernando Schauenburg 2023-08-18 23:40:20 +02:00
parent 27513acd50
commit 31bb90d3a4

View file

@ -0,0 +1,34 @@
local M = { 'j-hui/fidget.nvim' }
M.branch = 'legacy'
M.event = 'LspAttach'
M.config = function()
require('fidget').setup {
text = {
spinner = {
'▱▱▱▱▱▱▱',
'▰▱▱▱▱▱▱',
'▰▰▱▱▱▱▱',
'▰▰▰▱▱▱▱',
'▰▰▰▰▱▱▱',
'▰▰▰▰▰▱▱',
'▰▰▰▰▰▰▱',
'▰▰▰▰▰▰▰',
'▱▰▰▰▰▰▰',
'▱▱▰▰▰▰▰',
'▱▱▱▰▰▰▰',
'▱▱▱▱▰▰▰',
'▱▱▱▱▱▰▰',
'▱▱▱▱▱▱▰',
},
},
timer = {
spinner_rate = 75,
},
}
end
return M