diff --git a/lua/znvim/plugins/editor.lua b/lua/znvim/plugins/editor.lua index 38cc2eb..e569065 100644 --- a/lua/znvim/plugins/editor.lua +++ b/lua/znvim/plugins/editor.lua @@ -126,6 +126,24 @@ return { end, }, + { -- a fast motion inside a visible area + "https://github.com/ggandor/leap.nvim", + event = "BufReadPre", + config = function() + local leap = require("leap") + leap.add_default_mappings(true) + end, + }, + { -- bookmark files + "https://github.com/otavioschwanck/arrow.nvim", + event = "BufReadPre", + opts = { + show_icons = true, + leader_key = 'H', + buffer_leader_key = 'h', + } + }, + { -- displays a popup with possible key bindings "https://github.com/folke/which-key.nvim", event = "VeryLazy",