From b6445deed3345ad2725d7c16dc13ef0b419dbeab Mon Sep 17 00:00:00 2001 From: rootiest Date: Wed, 28 Aug 2024 06:37:44 -0400 Subject: [PATCH] feat(dap): add integration with Neotest for various languages --- lua/plugins/debug.lua | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/lua/plugins/debug.lua b/lua/plugins/debug.lua index 0bfdc5f..35a3fd8 100644 --- a/lua/plugins/debug.lua +++ b/lua/plugins/debug.lua @@ -8,4 +8,31 @@ return { { -- DAP Neovim Lua Adapter import = "lazyvim.plugins.extras.dap.nlua", }, + { -- NeoTest + import = "lazyvim.plugins.extras.test.core", + }, + { "nvim-neotest/neotest-plenary" }, + { + "nvim-neotest/neotest", + opts = { + adapters = { + "neotest-plenary", + "neotest-python", + "neotest-vim-test", + "neotest-minitest", + "neotest-bash", + }, + }, + dependencies = { + "nvim-neotest/nvim-nio", + "nvim-lua/plenary.nvim", + "zidhuss/neotest-minitest", + "rcasia/neotest-bash", + "antoinemadec/FixCursorHold.nvim", + "nvim-treesitter/nvim-treesitter", + }, + }, + { -- Profiling + "stevearc/profile.nvim", + }, }