mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-15 15:12:23 +02:00
8 lines
193 B
Lua
8 lines
193 B
Lua
local M = {}
|
|
|
|
M.config = function()
|
|
vim.api.nvim_set_keymap('n', 's', ":HopChar2<cr>", {silent = true})
|
|
vim.api.nvim_set_keymap('n', 'S', ":HopWord<cr>", {silent = true})
|
|
end
|
|
|
|
return M
|