Skip to content

Commit

Permalink
fix(hardtime-nvim): config uses legacy table (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfluegge authored and Uzaaft committed Jul 3, 2023
1 parent c0b0a09 commit f6e7c69
Showing 1 changed file with 9 additions and 21 deletions.
30 changes: 9 additions & 21 deletions lua/astrocommunity/workflow/hardtime-nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,16 @@ return {
"m4xshen/hardtime.nvim",
event = "User AstroFile",
opts = {
hint_keys = {
"k",
"j",
"^",
-- "$", -- conflict with motion.leap-nvim
"a",
"i",
"d",
"y",
"c",
-- "l", -- conflict with motion.leap-nvim
},
disabled_keys = {
"<UP>",
"<DOWN>",
"<LEFT>",
"<RIGHT>",
"<Insert>",
"<Home>",
"<End>",
"<PageUp>",
"<PageDown>",
["<UP>"] = { "", "i" },
["<DOWN>"] = { "", "i" },
["<LEFT>"] = { "", "i" },
["<RIGHT>"] = { "", "i" },
["<Insert>"] = { "", "i" },
["<Home>"] = { "", "i" },
["<End>"] = { "", "i" },
["<PageUp>"] = { "", "i" },
["<PageDown>"] = { "", "i" },
},
disabled_filetypes = {
"qf",
Expand Down

0 comments on commit f6e7c69

Please sign in to comment.