Skip to content

Commit

Permalink
Move delegate.nvim config
Browse files Browse the repository at this point in the history
  • Loading branch information
kuznetsss committed Feb 18, 2024
1 parent f03d4f1 commit 86119b3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
31 changes: 31 additions & 0 deletions lua/plugins/delegate.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
return {
'kuznetsss/delegate.nvim',
config = true,
-- dev = true,
keys = {
{
'<F5>',
function()
require('delegate').repeatCommand()
end,
},
{
'<F6>',
function()
require('delegate').runCommand()
end,
},
{
'<F7>',
function()
require('delegate').stopCommand()
end,
},
{
'<F8>',
function()
require('delegate.outputs.qf_output'):toggle()
end,
},
},
}
5 changes: 0 additions & 5 deletions lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,4 @@ return {
'ziontee113/icon-picker.nvim',
config = true,
},
{
'kuznetsss/delegate.nvim',
config = true,
dev = true,
},
}

0 comments on commit 86119b3

Please sign in to comment.