neovim/lua/plugins/hardtime.lua
2024-01-09 16:44:45 -08:00

26 lines
647 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",
"neo-tree",
"neo-tree-popup",
"netrw",
"noice",
"notify",
}
}
}