2022-03-09 19:03:04 +01:00
|
|
|
local arpeggio = require("my.plugins.arpeggio")
|
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.setup()
|
2022-09-09 00:16:11 +02:00
|
|
|
arpeggio.chordSilent("n", "vp", ":VimuxPromptCommand<CR>")
|
|
|
|
arpeggio.chordSilent("n", "vc", ":VimuxRunCommand \"clear\"<CR>")
|
|
|
|
arpeggio.chordSilent("n", "vl", ":VimuxRunLastCommand<CR>")
|
2022-03-09 19:03:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|