feat: ignore hardtime inside markdown

This commit is contained in:
Devin Haska 2024-04-01 10:53:29 -07:00
parent 5e1b760c7e
commit f7100e7871

View file

@ -1,26 +1,27 @@
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",
}
}
"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",
},
},
}