From e075b9fac394abf242c2b5d0830b1306c389be3a Mon Sep 17 00:00:00 2001 From: Heiko Blobner Date: Sat, 30 Sep 2023 23:26:42 +0200 Subject: [PATCH] nvim: neocomposer keymap fixed --- .../lua/core/plugins/editor/neocomposer.lua | 76 +++++++++---------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/dot_files/.config/nvim/lua/core/plugins/editor/neocomposer.lua b/dot_files/.config/nvim/lua/core/plugins/editor/neocomposer.lua index 91210dd..e2fcde4 100644 --- a/dot_files/.config/nvim/lua/core/plugins/editor/neocomposer.lua +++ b/dot_files/.config/nvim/lua/core/plugins/editor/neocomposer.lua @@ -1,44 +1,44 @@ -- NeoComposer is a Neovim plugin that streamlines macro management and execution with a -- customizable Status Line Component and Telescope Extension return { - { - "ecthelionvi/NeoComposer.nvim", - dependencies = { - "kkharji/sqlite.lua", - }, - opts = { - notify = true, - delay_timer = 150, - colors = { - bg = "#16161e", - fg = "#ff9e64", - red = "#ec5f67", - blue = "#5fb3b3", - green = "#99c794", - }, - keymaps = { - play_macro = "Q", - yank_macro = "yq", - stop_macro = "cq", - toggle_record = "q", - cycle_next = "", - cycle_prev = "", - toggle_macro_menu = "", - }, - }, - config = function(_, opts) - require('telescope').load_extension('macros') - require("NeoComposer").setup(opts) - end, - }, - { - "nvim-lualine/lualine.nvim", - opts = { - sections = { - lualine_c = { - -- { require('NeoComposer.ui').status_recording }, + { + "ecthelionvi/NeoComposer.nvim", + dependencies = { + "kkharji/sqlite.lua", }, - }, + opts = { + notify = true, + delay_timer = 200, + colors = { + bg = "#16161e", + fg = "#ff9e64", + red = "#ec5f67", + blue = "#5fb3b3", + green = "#99c794", + }, + keymaps = { + toggle_play_macro = "Q", + yank_macro = "yq", + stop_macro = "cq", + toggle_record = "q", + cycle_next = "", + cycle_prev = "", + toggle_macro_menu = "", + }, + }, + config = function(_, opts) + require('telescope').load_extension('macros') + require("NeoComposer").setup(opts) + end, }, - } + { + "nvim-lualine/lualine.nvim", + opts = { + sections = { + lualine_c = { + -- { require('NeoComposer.ui').status_recording }, + }, + }, + }, + } }