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

10 lines
159 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()
2022-03-09 19:44:21 +01:00
arpeggio.chordSilent("n", "vp", ":VimuxPromptCommand<CR>")
2022-03-09 19:03:04 +01:00
end
return M