feat: add hardtime.nvim

This commit is contained in:
Devin Haska 2025-05-27 11:54:47 -07:00
parent 270b9013fb
commit 23c8e0ed95
3 changed files with 16 additions and 0 deletions

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

@ -0,0 +1,14 @@
return {
"m4xshen/hardtime.nvim",
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
opts = {
disable_mouse = true,
disabled_keys = {
-- Drill Sergeant Demchuk!
["<Up>"] = {"", "i"},
["<Down>"] = {"", "i"},
["<Left>"] = {"", "i"},
["<Right>"] = {"", "i"}
}
}
}