From 24c951898bf8236ed80c43467bc2c5b1ad1ce315 Mon Sep 17 00:00:00 2001 From: mokou Date: Mon, 14 Mar 2022 18:13:48 +0100 Subject: [PATCH] add the pounce plugin --- dot_config/nvim/lua/keybinds.lua | 3 ++- dot_config/nvim/lua/plugins.lua | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dot_config/nvim/lua/keybinds.lua b/dot_config/nvim/lua/keybinds.lua index 4c46da5..8a82162 100644 --- a/dot_config/nvim/lua/keybinds.lua +++ b/dot_config/nvim/lua/keybinds.lua @@ -7,12 +7,13 @@ local wk = require("whichkey_setup") local leader_keymap = { [""] = {"Telescope find_files", "Find file"}, + [""] = {"b#", "Goto other buffer"}, + [""] = {"Pounce", "Pounce"}, b = { name = "+buffers", b = {"Telescope buffers", "List buffers"}, d = {"bd", "Delete buffer"} }, - [""] = {"b#", "Goto other buffer"}, w = { name = "+window", v = {"vsplit", "Split vertically"}, diff --git a/dot_config/nvim/lua/plugins.lua b/dot_config/nvim/lua/plugins.lua index f885038..9954913 100644 --- a/dot_config/nvim/lua/plugins.lua +++ b/dot_config/nvim/lua/plugins.lua @@ -39,6 +39,7 @@ return require("packer").startup(function(use) -- Text editing use "tpope/vim-surround" use "Raimondi/delimitMate" + use "rlane/pounce.nvim" -- Fancy UI stuff use "RRethy/nvim-base16"