26 lines
572 B
Lua
26 lines
572 B
Lua
|
--
|
||
|
-- 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
|
||
|
}
|
||
|
}
|