local neotest = require('neotest') neotest.setup({ adapters = { require('neotest-rust'), }, }) vim.keymap.set("n", "t", function() neotest.run.run() end) vim.keymap.set("n", "tf", function() neotest.run.run(vim.fn.expand('%')) end) vim.keymap.set("n", "tt", function() neotest.run.run({ strategy = 'dap' }) end) vim.keymap.set("n", "ta", function() neotest.run.attach() end) vim.keymap.set("n", "to", function() neotest.output.open({ enter = true }) end) vim.keymap.set("n", "ts", function() neotest.summary.toggle() end) vim.diagnostic.config({ neotest = true, }, vim.api.nvim_create_namespace('neotest'))