From eb8456c99e09a35c4b9eaeeb2a0e0e2cd918a68b Mon Sep 17 00:00:00 2001 From: Lorenzo Bettini Date: Tue, 16 Jul 2024 17:58:48 +0200 Subject: [PATCH] added neotest.lua --- lua/plugins/neotest.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/plugins/neotest.lua diff --git a/lua/plugins/neotest.lua b/lua/plugins/neotest.lua new file mode 100644 index 0000000..a54ec12 --- /dev/null +++ b/lua/plugins/neotest.lua @@ -0,0 +1,13 @@ +return { + { "nvim-neotest/neotest-plenary" }, + { "rcasia/neotest-java" }, + { + "nvim-neotest/neotest", + dependencies = { + "nvim-lua/plenary.nvim", + "antoinemadec/FixCursorHold.nvim", + "nvim-treesitter/nvim-treesitter", + }, + opts = { adapters = { "neotest-plenary", "neotest-java" } }, + }, +}