nvim/nvim/lua/plugins/fidget.lua
2025-03-17 11:04:22 +01:00

15 lines
278 B
Lua
Executable File

return {
-- notifications && lsp progress msgs
"j-hui/fidget.nvim",
config = function()
require("fidget").setup({
notification = {
window = {
winblend = 0,
}
}
})
end
}