mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
14 lines
228 B
Lua
14 lines
228 B
Lua
return {
|
|
"j-hui/fidget.nvim",
|
|
lazy = true,
|
|
tag = "legacy",
|
|
event = "BufRead",
|
|
config = function()
|
|
require("fidget").setup({
|
|
window = {
|
|
blend = 0,
|
|
relative = "editor",
|
|
},
|
|
})
|
|
end,
|
|
}
|