From 3396a54a5094d6b6223942714eb2c16c650036e6 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Fri, 23 Feb 2024 13:12:04 +0800 Subject: [PATCH] add leap.nvim --- lua/plugins/leap.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/leap.lua diff --git a/lua/plugins/leap.lua b/lua/plugins/leap.lua new file mode 100644 index 0000000..e03457e --- /dev/null +++ b/lua/plugins/leap.lua @@ -0,0 +1,10 @@ +return { + "ggandor/leap.nvim", + dependencies = { + "tpope/vim-repeat", + }, + opts = {}, + init = function() + require('leap').create_default_mappings() + end, +}