added hardtime and notify |

This commit is contained in:
MaasOedipa 2025-12-28 07:50:28 +01:00
parent 5a0e2b81fc
commit e4c441e5ad
2 changed files with 16 additions and 4 deletions

View File

@ -2,5 +2,9 @@ return {
'm4xshen/hardtime.nvim', 'm4xshen/hardtime.nvim',
lazy = false, lazy = false,
dependencies = { 'MunifTanjim/nui.nvim' }, dependencies = { 'MunifTanjim/nui.nvim' },
opts = {}, opts = {
disabled = false,
max_time = 5000,
notification = true,
},
} }

View File

@ -1,6 +1,14 @@
return { return {
'rcarriga/nvim-notify', 'rcarriga/nvim-notify',
lazy = false, config = function()
dependencies = { 'MunifTanjim/nui.nvim' }, require('notify').setup {
opts = {}, background_colour = '#000000',
stages = 'fade',
timeout = 500,
render = 'wrapped-compact',
}
-- MUST be after setup
vim.notify = require 'notify'
end,
} }