added hardtime and notify |
This commit is contained in:
parent
5a0e2b81fc
commit
e4c441e5ad
|
|
@ -2,5 +2,9 @@ return {
|
|||
'm4xshen/hardtime.nvim',
|
||||
lazy = false,
|
||||
dependencies = { 'MunifTanjim/nui.nvim' },
|
||||
opts = {},
|
||||
opts = {
|
||||
disabled = false,
|
||||
max_time = 5000,
|
||||
notification = true,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,14 @@
|
|||
return {
|
||||
'rcarriga/nvim-notify',
|
||||
lazy = false,
|
||||
dependencies = { 'MunifTanjim/nui.nvim' },
|
||||
opts = {},
|
||||
config = function()
|
||||
require('notify').setup {
|
||||
background_colour = '#000000',
|
||||
stages = 'fade',
|
||||
timeout = 500,
|
||||
render = 'wrapped-compact',
|
||||
}
|
||||
|
||||
-- MUST be after setup
|
||||
vim.notify = require 'notify'
|
||||
end,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue