Files
nvim/after/plugin/fidget.lua

15 lines
191 B
Lua

local status_ok, fidget = pcall(require, "fidget")
if not status_ok then
return
end
fidget.setup {
text = {
spinner = "line",
done = ":)",
},
window = {
zindex = 1,
}
}