feat: bust up the project, refresh upstream

This commit is contained in:
Garrett Dawson 2024-05-24 17:48:34 -06:00
parent a3cd76746c
commit 2079778b89
47 changed files with 1446 additions and 1205 deletions

View file

@ -0,0 +1,25 @@
return {
'phaazon/hop.nvim',
cond = false,
branch = 'v2',
config = function()
local hop = require('hop')
local directions = require('hop.hint').HintDirection
hop.setup {}
vim.keymap.set(
'',
'<leader>h',
function() hop.hint_char1({ direction = directions.AFTER_CURSOR }) end,
{ remap = true, desc = '[H]opChar1 forwards' }
)
vim.keymap.set(
'',
'<leader>H',
function() hop.hint_char1({ direction = directions.BEFORE_CURSOR }) end,
{ remap = true, desc = '[H]opChar1 backwards' }
)
end
}