mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2026-02-04 06:42:05 +00:00
Update 2024-08-21
This commit is contained in:
30
lua/plugins/neotest.lua
Normal file
30
lua/plugins/neotest.lua
Normal file
@@ -0,0 +1,30 @@
|
||||
return {
|
||||
"nvim-neotest/neotest",
|
||||
dependencies = {
|
||||
"nvim-neotest/nvim-nio",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"antoinemadec/FixCursorHold.nvim",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"nvim-neotest/neotest-python",
|
||||
"mrcjkb/rustaceanvim",
|
||||
"alfaix/neotest-gtest",
|
||||
"nvim-neotest/neotest-vim-test",
|
||||
},
|
||||
-- enabled = false,
|
||||
config = function()
|
||||
require("neotest").setup({
|
||||
adapters = {
|
||||
require("neotest-python")({
|
||||
dap = { justMyCode = false },
|
||||
args = { "--log-level", "DEBUG" },
|
||||
runner = "pytest",
|
||||
}),
|
||||
require("rustaceanvim.neotest"),
|
||||
require("neotest-gtest").setup({}),
|
||||
require("neotest-vim-test")({
|
||||
ignore_file_types = { "python", "vim", "lua" },
|
||||
}),
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user