nvim_config/lua/plugins/hardtime.lua

20 lines
441 B
Lua
Raw Normal View History

2025-04-08 15:15:22 +00:00
return {
"m4xshen/hardtime.nvim",
event = "User AstroFile",
opts = {
disable_mouse = false,
restriction_mode = "hint",
disabled_keys = {
["<Insert>"] = { "", "i" },
["<Home>"] = { "", "i" },
["<End>"] = { "", "i" },
["<PageUp>"] = { "", "i" },
["<PageDown>"] = { "", "i" },
},
},
config = function(_, opts)
require("hardtime").setup(opts)
require("hardtime").enable()
end,
}