mirror of
https://codeberg.org/JasterV/dotfiles.git
synced 2026-04-26 18:40:04 +00:00
18 lines
361 B
Lua
18 lines
361 B
Lua
return {
|
|
-- tools
|
|
{
|
|
"vim-test/vim-test",
|
|
event = "BufRead",
|
|
|
|
config = function()
|
|
vim.cmd([[
|
|
function! BufferTermStrategy(cmd)
|
|
exec 'te ' . a:cmd
|
|
endfunction
|
|
|
|
let g:test#custom_strategies = {'bufferterm': function('BufferTermStrategy')}
|
|
let g:test#strategy = 'bufferterm'
|
|
]])
|
|
end,
|
|
},
|
|
}
|