devcontainer/config/nvim/plugins/notifications.lua
Job79 702687276a
All checks were successful
Container build / container-build (push) Successful in 3m26s
feat: only show important notifications
2024-11-01 20:37:52 +01:00

11 lines
135 B
Lua

-- Only show important notifications.
return {
{
"rcarriga/nvim-notify",
opts = {
level = 3,
render = "minimal",
},
},
}