Zach Zolton ab3778d9ac
Hack my existing Kickstart mods into this fork
Good enough for now. If I need more, then I'll make more commits!
2023-08-11 13:53:19 -04:00

15 lines
437 B
Lua

return {
'preservim/vimux',
dependencies = {
'vim-test/vim-test',
},
config = function()
local opts = { noremap = true, silent = true }
local keymap = vim.api.nvim_set_keymap
keymap('n', '<leader>rb', '<cmd>wall <bar> TestFile<cr>', opts)
keymap('n', '<leader>rf', '<cmd>wall <bar> TestNearest<cr>',opts)
keymap('n', '<leader>rl', '<cmd>wall <bar> TestLast<cr>', opts)
vim.cmd [[ let test#strategy = "vimux" ]]
end,
}