From c7dc25c6d85d5fefdf71c820690d102f2f356d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sun, 9 Apr 2023 21:59:58 +0200 Subject: [PATCH] common: add leap.nvim --- lua/plugins/common.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/plugins/common.lua b/lua/plugins/common.lua index 6db9751..94ea9c2 100644 --- a/lua/plugins/common.lua +++ b/lua/plugins/common.lua @@ -38,6 +38,15 @@ return { -- highlighting for comments { 'folke/todo-comments.nvim', dependencies = 'nvim-lua/plenary.nvim', opts = {} }, + -- newage search plugin + { + 'ggandor/leap.nvim', + dependencies = { 'tpope/vim-repeat' }, + config = function() + require('leap').add_default_mappings() + end, + }, + -- permanent links to fileranges { 'ruifm/gitlinker.nvim',