Added hardtime and nvim-notify

This commit is contained in:
Ruslan Rakhmanov 2025-05-28 19:44:43 +02:00
parent 4ee16398a1
commit ecacbd24f8
2 changed files with 17 additions and 0 deletions

View file

@ -1072,6 +1072,19 @@ require('lazy').setup({
lazy = false,
},
{ -- Hardtime
'm4xshen/hardtime.nvim',
lazy = false,
dependencies = { 'MunifTanjim/nui.nvim' },
opts = {},
},
{ -- nvim-notify
'rcarriga/nvim-notify',
lazy = false,
opts = {},
},
-- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
-- init.lua. If you want these files, they are in the repository, so you can just download them and
-- place them in the correct locations.
@ -1120,5 +1133,7 @@ require('lazy').setup({
},
})
vim.notify = require 'notify'
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et