1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/vimux.lua

12 lines
287 B
Lua
Raw Normal View History

2022-03-09 19:03:04 +01:00
local arpeggio = require("my.plugins.arpeggio")
local M = {}
function M.setup()
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