add the pounce plugin
This commit is contained in:
parent
a2495e2cf6
commit
24c951898b
2 changed files with 3 additions and 1 deletions
|
@ -7,12 +7,13 @@ local wk = require("whichkey_setup")
|
|||
|
||||
local leader_keymap = {
|
||||
["<space>"] = {"<cmd>Telescope find_files<CR>", "Find file"},
|
||||
["<tab><tab>"] = {"<cmd>b#<CR>", "Goto other buffer"},
|
||||
["<CR>"] = {"<cmd>Pounce<CR>", "Pounce"},
|
||||
b = {
|
||||
name = "+buffers",
|
||||
b = {"<cmd>Telescope buffers<CR>", "List buffers"},
|
||||
d = {"<cmd>bd<CR>", "Delete buffer"}
|
||||
},
|
||||
["<tab><tab>"] = {"<cmd>b#<CR>", "Goto other buffer"},
|
||||
w = {
|
||||
name = "+window",
|
||||
v = {"<cmd>vsplit<CR>", "Split vertically"},
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue