Skip to content

Commit ecacbd2

Browse files
committed
Added hardtime and nvim-notify
1 parent 4ee1639 commit ecacbd2

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

init.lua

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,6 +1072,19 @@ require('lazy').setup({
10721072
lazy = false,
10731073
},
10741074

1075+
{ -- Hardtime
1076+
'm4xshen/hardtime.nvim',
1077+
lazy = false,
1078+
dependencies = { 'MunifTanjim/nui.nvim' },
1079+
opts = {},
1080+
},
1081+
1082+
{ -- nvim-notify
1083+
'rcarriga/nvim-notify',
1084+
lazy = false,
1085+
opts = {},
1086+
},
1087+
10751088
-- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
10761089
-- init.lua. If you want these files, they are in the repository, so you can just download them and
10771090
-- place them in the correct locations.
@@ -1120,5 +1133,7 @@ require('lazy').setup({
11201133
},
11211134
})
11221135

1136+
vim.notify = require 'notify'
1137+
11231138
-- The line beneath this is called `modeline`. See `:help modeline`
11241139
-- vim: ts=2 sts=2 sw=2 et

lazy-lock.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"everforest-nvim": { "branch": "main", "commit": "2eb7c348f880ba93de4d98cae049c9441f5d4d49" },
77
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
88
"gitsigns.nvim": { "branch": "main", "commit": "43b0c856ae5f32a195d83f4a27fe21d63e6c966c" },
9+
"hardtime.nvim": { "branch": "main", "commit": "1a3648a53002c2911ccb88e9c9f876cdc6c43ad6" },
910
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
1011
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },
1112
"lazygit.nvim": { "branch": "main", "commit": "b9eae3badab982e71abab96d3ee1d258f0c07961" },
@@ -24,6 +25,7 @@
2425
"nvim-dap-ui": { "branch": "master", "commit": "73a26abf4941aa27da59820fd6b028ebcdbcf932" },
2526
"nvim-lspconfig": { "branch": "master", "commit": "4bc481b6f0c0cf3671fc894debd0e00347089a4e" },
2627
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
28+
"nvim-notify": { "branch": "master", "commit": "b5825cf9ee881dd8e43309c93374ed5b87b7a896" },
2729
"nvim-treesitter": { "branch": "master", "commit": "28d480e0624b259095e56f353ec911f9f2a0f404" },
2830
"oil.nvim": { "branch": "master", "commit": "685cdb4ffa74473d75a1b97451f8654ceeab0f4a" },
2931
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },

0 commit comments

Comments
 (0)