mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 14:18:36 +02:00
Lastest changes
This commit is contained in:
parent
8693bde880
commit
2870f89f1e
6 changed files with 11 additions and 22 deletions
|
@ -1,3 +1,9 @@
|
|||
return {
|
||||
'easymotion/vim-easymotion'
|
||||
'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,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue