diff --git a/lua/plugins/tests.lua b/lua/plugins/tests.lua new file mode 100644 index 0000000..55a725a --- /dev/null +++ b/lua/plugins/tests.lua @@ -0,0 +1,21 @@ +return { + { + "nvim-neotest/neotest", + dependencies = { + "nvim-neotest/nvim-nio", + "nvim-lua/plenary.nvim", + "antoinemadec/FixCursorHold.nvim", + "nvim-treesitter/nvim-treesitter", + "rouge8/neotest-rust", + }, + init = function () + require("neotest").setup({ + adapters = { + require("neotest-rust") { + args = { "--no-capture" }, + } + } + }) + end + } +}