feat: added hardtime

This commit is contained in:
gutz430 2025-02-12 12:40:47 +01:00
parent 5b7665557d
commit 9018ac2ffa
3 changed files with 10 additions and 0 deletions

View file

@ -20,3 +20,5 @@ vim.cmd("Neotree filesystem toggle left")
-- Lazygit
vim.keymap.set('n', '<leader>lg', ':LazyGit<CR>')
-- Hardtime
require("hardtime").setup()

View file

@ -1,5 +1,6 @@
{
"catppuccin": { "branch": "main", "commit": "7be452ee067978cdc8b2c5f3411f0c71ffa612b9" },
"hardtime.nvim": { "branch": "main", "commit": "198a5aae186e866eff0826ef1706c229f856f11c" },
"lazy.nvim": { "branch": "main", "commit": "1159bdccd8910a0fd0914b24d6c3d186689023d9" },
"lazygit.nvim": { "branch": "main", "commit": "56760339a81cd1540d5a72fd9d93010a2677b55d" },
"lualine.nvim": { "branch": "master", "commit": "b431d228b7bbcdaea818bdc3e25b8cdbe861f056" },

7
lua/plugins/hardtime.lua Normal file
View file

@ -0,0 +1,7 @@
return {
{
"m4xshen/hardtime.nvim",
dependencies = { "MunifTanjim/nui.nvim" },
opts = {}
}
}