feat: add plugiin nvim-notify

This commit is contained in:
Sven Vogel 2024-11-07 19:47:51 +01:00
parent 25b36c4c2a
commit 38fbfb61c1
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
--
-- Prettier user interface for VIM notifications.
--
-- Source: https://github.com/rcarriga/nvim-notify
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 01.11.2024
-- Edited: 01.11.2024
--
-- ==============================================
return {
{
'rcarriga/nvim-notify',
lazy = false,
opts = {
render = "wrapped-compact"
},
-- Source: https://www.lazyvim.org/plugins/ui#nvim-notify
init = function()
vim.notify = require('notify')
end
}
}