From dd55f5aaf1338ba52d2d1f3ce0f10b981d48beae Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Fri, 19 Jan 2024 18:59:05 +0100 Subject: [PATCH] leap add --- plugins.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins.lua b/plugins.lua index 822368c..f4432c2 100644 --- a/plugins.lua +++ b/plugins.lua @@ -1,4 +1,4 @@ -local overrides = require("custom.configs.overrides") +local overrides = require "custom.configs.overrides" ---@type NvPluginSpec[] local plugins = { @@ -16,7 +16,7 @@ local plugins = { -- override plugin configs { "williamboman/mason.nvim", - opts = overrides.mason + opts = overrides.mason, }, { @@ -46,6 +46,12 @@ local plugins = { require "custom.configs.conform" end, }, + { + "ggandor/leap.nvim", + config = function() + require("leap").create_default_mappings() + end, + }, } return plugins