Basic setup
This commit is contained in:
parent
2ba39c6973
commit
0185a988a2
15 changed files with 412 additions and 38 deletions
14
lua/custom/plugins/vim_test.lua
Normal file
14
lua/custom/plugins/vim_test.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
'vim-test/vim-test',
|
||||
dependencies = {
|
||||
'preservim/vimux',
|
||||
},
|
||||
setup = {
|
||||
vim.cmd 'let test#strategy = "vimux"',
|
||||
},
|
||||
keys = {
|
||||
{ '<leader>tt', '<cmd>TestFile<CR>', { desc = 'Test file' } },
|
||||
{ '<leader>tn', '<cmd>TestNearest<CR>', { desc = 'Test nearest' } },
|
||||
{ '<leader>tl', '<cmd>TestLast<CR>', { desc = 'Test last' } },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue