2023-02-28 13:48:04 -05:00
|
|
|
return {
|
2023-07-04 14:34:42 -04:00
|
|
|
'easymotion/vim-easymotion',
|
|
|
|
|
config = function()
|
|
|
|
|
vim.keymap.set('n', 'f', '<Plug>(easymotion-f)', { desc = '[f]ind next character' })
|
|
|
|
|
vim.keymap.set('n', 'F', '<Plug>(easymotion-F)', { desc = '[F]ind previous character' })
|
|
|
|
|
vim.keymap.set('n', 't', '<Plug>(easymotion-t)', { desc = '[t]ill next character' })
|
|
|
|
|
vim.keymap.set('n', 'T', '<Plug>(easymotion-T)', { desc = '[T]ill previous character' })
|
|
|
|
|
end,
|
2023-02-28 13:48:04 -05:00
|
|
|
}
|