neovim/lua/plugins/hardtime.lua
2024-04-18 10:01:22 -07:00

28 lines
508 B
Lua

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" },
},
disabled_filetypes = {
"checkhealth",
"fugitive",
"help",
"lazy",
"mason",
"markdown",
"neo-tree",
"neo-tree-popup",
"netrw",
"noice",
"notify",
"qf",
},
},
}