Improve fidget.nvim to handle all notifications
This commit is contained in:
parent
d350db2449
commit
3264ed5de5
11
init.lua
11
init.lua
|
@ -478,8 +478,15 @@ require('lazy').setup({
|
|||
'williamboman/mason-lspconfig.nvim',
|
||||
'WhoIsSethDaniel/mason-tool-installer.nvim',
|
||||
|
||||
-- Useful status updates for LSP.
|
||||
{ 'j-hui/fidget.nvim', opts = {} },
|
||||
-- Provides polished UI notifications for LSP and other plugins.
|
||||
{
|
||||
'j-hui/fidget.nvim',
|
||||
opts = {
|
||||
notification = {
|
||||
override_vim_notify = true, -- Override vim.notify() to use Fidget's notifications
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- Allows extra capabilities provided by blink.cmp
|
||||
'saghen/blink.cmp',
|
||||
|
|
Loading…
Reference in New Issue