added hardtime and notify |
This commit is contained in:
parent
5a0e2b81fc
commit
e4c441e5ad
|
|
@ -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,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue