1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/leap.lua
2023-01-10 02:38:06 +01:00

16 lines
222 B
Lua

local M = {
-- removes the need for spamming w or e
"ggandor/leap.nvim",
name = "leap",
event = "VeryLazy"
}
function M.config()
require("leap").add_default_mappings()
end
-- (something)
-- something
return M