Skip to content

Commit

Permalink
feat(workflow): add hardtime.nvim (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSast committed May 27, 2023
1 parent ef4e793 commit 32e14dd
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/astrocommunity/workflow/hardtime-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# hardtime.nvim

**Repository:** <https://github.com/m4xshen/hardtime.nvim>

A Neovim plugin helping you establish good command workflow and habit
41 changes: 41 additions & 0 deletions lua/astrocommunity/workflow/hardtime-nvim/hardtime-nvim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
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>",
},
disabled_filetypes = {
"qf",
"netrw",
"NvimTree",
"lazy",
"mason",
"prompt",
"TelescopePrompt",
"noice",
"notify",
"neo-tree",
},
},
}

0 comments on commit 32e14dd

Please sign in to comment.