Add rust plugins

This commit is contained in:
Christopher Williams
2026-06-06 11:11:34 -04:00
parent bc5977fbea
commit 977864875c
7 changed files with 131 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
local M = {
{
"nvim-neotest/neotest",
event = "VeryLazy",
dependencies = {
"nvim-neotest/nvim-nio",
"nvim-lua/plenary.nvim",
"antoinemadec/FixCursorHold.nvim",
},
config = function()
require("neotest").setup({
adapters = {
require("rustaceanvim.neotest")
},
})
end,
},
}
return M