10 lines
167 B
Lua
10 lines
167 B
Lua
|
local arpeggio = require("my.plugins.arpeggio")
|
||
|
|
||
|
local M = {}
|
||
|
|
||
|
function M.setup()
|
||
|
arpeggio.chordSilent("n", "<Leader>vp", ":VimuxPromptCommand<CR>")
|
||
|
end
|
||
|
|
||
|
return M
|