More plugin configuration
This commit is contained in:
21
lua/plugins/neotest.lua
Normal file
21
lua/plugins/neotest.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
return {
|
||||
"nvim-neotest/neotest",
|
||||
lazy = true,
|
||||
dependencies = {
|
||||
"nvim-neotest/nvim-nio",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"antoinemadec/FixCursorHold.nvim",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
-- Adapters
|
||||
'V13Axel/neotest-pest',
|
||||
-- "olimorris/neotest-phpunit",
|
||||
},
|
||||
config = function()
|
||||
require('neotest').setup({
|
||||
adapters = {
|
||||
require('neotest-pest'),
|
||||
-- require('neotest-phpunit'),
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user