1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/leap.lua

16 lines
222 B
Lua
Raw Normal View History

2022-12-27 20:45:43 +01:00
local M = {
-- removes the need for spamming w or e
"ggandor/leap.nvim",
name = "leap",
event = "VeryLazy"
}
2022-12-09 02:32:25 +01:00
2022-12-27 20:45:43 +01:00
function M.config()
2022-12-09 02:32:25 +01:00
require("leap").add_default_mappings()
end
-- (something)
-- something
return M