Added base plugin to personal fork
This commit is contained in:
parent
c9122e89e3
commit
9dd65a9706
5 changed files with 66 additions and 3 deletions
19
lua/custom/plugins/neotest.lua
Normal file
19
lua/custom/plugins/neotest.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
return {
|
||||
'nvim-neotest/neotest',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'antoinemadec/FixCursorHold.nvim',
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
},
|
||||
config = function()
|
||||
require('neotest').setup {
|
||||
adapters = {
|
||||
require 'neotest-dotnet' {
|
||||
dap = { justMyCode = false },
|
||||
},
|
||||
require 'neotest-plenary',
|
||||
},
|
||||
}
|
||||
end,
|
||||
vim.keymap.set('n', 'ts', ':Neotest run suite=true<CR> :Neotest summary open<CR>', {}),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue