feat: bust up the project, refresh upstream
This commit is contained in:
parent
a3cd76746c
commit
2079778b89
47 changed files with 1446 additions and 1205 deletions
25
lua/killtheliterate/plugins/hop.lua
Normal file
25
lua/killtheliterate/plugins/hop.lua
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue