diff --git a/nvim/lua/themystery/plugins/recorder.lua b/nvim/lua/themystery/plugins/recorder.lua index a130cbb..4e44795 100644 --- a/nvim/lua/themystery/plugins/recorder.lua +++ b/nvim/lua/themystery/plugins/recorder.lua @@ -1,5 +1,16 @@ return { "chrisgrieser/nvim-recorder", dependencies = "rcarriga/nvim-notify", -- optional - opts = {}, -- required even with default settings, since it calls `setup()` + opts = { + mapping = { + startStopRecording = "q", + playMacro = "Q", + switchSlot = "", + editMacro = "cq", + deleteAllMacros = "dq", + yankMacro = "yq", + -- ⚠️ this should be a string you don't use in insert mode during a macro + addBreakPoint = "##", + } + }, }