blob: ee412a720610fc5e93a67f2764a84660d2e5a0ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local status_ok, fidget = pcall(require, "fidget")
if not status_ok then
return
end
fidget.setup {
text = {
spinner = "line",
done = ":)",
},
window = {
zindex = 1,
}
}
|