add nvim-recorder

This commit is contained in:
LordMZTE 2023-01-10 16:06:44 +01:00
parent cda5322693
commit d763c00a45
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,8 @@
require("recorder").setup {
mapping = {
-- this would conflict with search keybind (default is #)
addBreakPoint = nil,
},
-- clear all existing macros on startup
clear = true,
}

View file

@ -13,7 +13,10 @@ local function cmp_plugins(use)
use "hrsh7th/cmp-buffer"
use "hrsh7th/cmp-path"
use "hrsh7th/cmp-cmdline"
use { "hrsh7th/nvim-cmp", config = pconf "nvim_cmp" }
use {
"hrsh7th/nvim-cmp",
config = pconf "nvim_cmp",
}
use "saadparwaiz1/cmp_luasnip"
use {
@ -176,6 +179,11 @@ require("packer").startup(function(use)
config = pconf "nvim_harpoon",
}
use {
"chrisgrieser/nvim-recorder",
config = pconf "nvim_recorder",
}
cmp_plugins(use)
end)