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

10 lines
167 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", "<Leader>vp", ":VimuxPromptCommand<CR>")
end
return M