vim: add plugin 'j-hui/fidget.nvim'
This commit is contained in:
parent
27513acd50
commit
31bb90d3a4
1 changed files with 34 additions and 0 deletions
34
config/nvim/lua/fschauen/plugins/fidget.lua
Normal file
34
config/nvim/lua/fschauen/plugins/fidget.lua
Normal 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue