Added hardtime and nvim-notify
This commit is contained in:
parent
4ee16398a1
commit
ecacbd24f8
2 changed files with 17 additions and 0 deletions
15
init.lua
15
init.lua
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue