feat: add hardtime.nvim

This commit is contained in:
Devin Lumley 2024-01-02 17:03:54 -08:00
parent d961ba0c60
commit a5d38f9ac4
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"}
}
}
}