Compare commits
4 Commits
51d44eccb6
...
002bebba41
| Author | SHA1 | Date |
|---|---|---|
|
|
002bebba41 | 2 years ago |
|
|
7071c2c983 | 2 years ago |
|
|
e075b9fac3 | 2 years ago |
|
|
70b8952fb1 | 2 years ago |
4 changed files with 52 additions and 69 deletions
@ -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 = "<m-n>", |
|||
cycle_prev = "<m-p>", |
|||
toggle_macro_menu = "<m-q>", |
|||
}, |
|||
}, |
|||
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 = "<m-n>", |
|||
cycle_prev = "<m-p>", |
|||
toggle_macro_menu = "<m-q>", |
|||
}, |
|||
}, |
|||
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 }, |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
} |
|||
|
|||
@ -1,4 +1,5 @@ |
|||
-- An always-on highlight for a unique character in every word on a line to help you use f, F and family. |
|||
return { |
|||
'unblevable/quick-scope', |
|||
'unblevable/quick-scope', |
|||
cond = not vim.g.vscode |
|||
} |
|||
|
|||
Loading…
Reference in new issue