nvim: Replace popup notifications with fidget
Since I am already using fidget.nvim for lsp notifications, might as well use it for other, more explicit ones. Removed nvim-notify in favor of this since I like how unobtrusive the notifications are (and let's be honest, most you don't need to pay attention to, instead they just take you out of flow).
This commit is contained in:
parent
75334e9e87
commit
0bdd406f56
3 changed files with 13 additions and 11 deletions
|
@ -26,7 +26,7 @@
|
|||
"conform.nvim": { "branch": "master", "commit": "ce95e6b2a072d81fd312ff213f241cacab1eccef" },
|
||||
"dial.nvim": { "branch": "master", "commit": "54b503f906bc9e5ab85288414840a1b86d40769f" },
|
||||
"dressing.nvim": { "branch": "master", "commit": "8b7ae53d7f04f33be3439a441db8071c96092d19" },
|
||||
"fidget.nvim": { "branch": "main", "commit": "0ba1e16d07627532b6cae915cc992ecac249fb97" },
|
||||
"fidget.nvim": { "branch": "main", "commit": "300018af4abd00610a345e382ca1f4b7ba420f77" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "53d3df271d031c405255e99410628c26a8f0d2b0" },
|
||||
"fwatch.nvim": { "branch": "main", "commit": "a691f7349dc66285cd75a1a698dd28bca45f2bf8" },
|
||||
"git-conflict.nvim": { "branch": "main", "commit": "4e0191c9a0ae05d7fbdcdc7f15cd358f56d23bfb" },
|
||||
|
@ -54,7 +54,6 @@
|
|||
"nvim-coverage": { "branch": "main", "commit": "cf4b5c61dfac977026a51a2bcad9173c272986ce" },
|
||||
"nvim-lint": { "branch": "master", "commit": "849ccb610de3f6ce1a239ea1e68568ef1a53d5df" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "cf3dd4a290084a868fac0e2e876039321d57111c" },
|
||||
"nvim-notify": { "branch": "master", "commit": "ea9c8ce7a37f2238f934e087c255758659948e0f" },
|
||||
"nvim-surround": { "branch": "main", "commit": "703ec63aa798e5e07d309b35e42def34bebe0174" },
|
||||
"nvim-toggleterm.lua": { "branch": "main", "commit": "faee9d60428afc7857e0927fdc18daa6c409fa64" },
|
||||
"nvim-tree.lua": { "branch": "master", "commit": "7d1760f892951dd6a118dae1d7a1d8df5f029edf" },
|
||||
|
|
|
@ -236,9 +236,6 @@ return {
|
|||
event = { "InsertEnter", "CmdlineEnter" },
|
||||
},
|
||||
|
||||
-- loading animations for some LSP
|
||||
{ "j-hui/fidget.nvim", config = true, tag = "legacy", event = "VeryLazy" },
|
||||
|
||||
-- useful quickfix-like buffer
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
|
|
|
@ -8,13 +8,19 @@ return {
|
|||
end,
|
||||
event = "VeryLazy",
|
||||
},
|
||||
-- create a pretty pop-up notification
|
||||
-- create pretty unobtrusive notifications
|
||||
{
|
||||
"rcarriga/nvim-notify",
|
||||
config = function()
|
||||
vim.notify = require("notify")
|
||||
end,
|
||||
event = "VeryLazy",
|
||||
"j-hui/fidget.nvim",
|
||||
opts = {
|
||||
progress = {
|
||||
suppress_on_insert = true,
|
||||
ignore_done_already = true,
|
||||
},
|
||||
notification = {
|
||||
override_vim_notify = true,
|
||||
},
|
||||
},
|
||||
event = "VimEnter",
|
||||
},
|
||||
-- make all vim.ui interfaces prettyy
|
||||
{ "stevearc/dressing.nvim", config = true, event = "VeryLazy" },
|
||||
|
|
Loading…
Reference in a new issue