From 67d76806f6dbbc3808cdaf7a8abdeb30af0270c5 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Mon, 8 Apr 2024 22:35:14 -0700 Subject: [PATCH] move test.lua --- lua/plugins/extras/test.lua | 18 ++++++++++++++++++ lua/plugins/test.lua | 7 ------- 2 files changed, 18 insertions(+), 7 deletions(-) create mode 100644 lua/plugins/extras/test.lua delete mode 100644 lua/plugins/test.lua diff --git a/lua/plugins/extras/test.lua b/lua/plugins/extras/test.lua new file mode 100644 index 0000000..756a597 --- /dev/null +++ b/lua/plugins/extras/test.lua @@ -0,0 +1,18 @@ +return { + { "olimorris/neotest-rspec" }, + { + "nvim-neotest/neotest", + opts = { + adapters = { + "neotest-rspec" + } + }, + dependencies = { + "nvim-treesitter/nvim-treesitter", + "olimorris/neotest-rspec", + }, + -- config = function(_, opts) + -- require("neotest").setup(opts) + -- end + }, +} diff --git a/lua/plugins/test.lua b/lua/plugins/test.lua deleted file mode 100644 index aa8a342..0000000 --- a/lua/plugins/test.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - { "olimorris/neotest-rspec" }, - { - "nvim-neotest/neotest", - opts = { adapters = { "olimorris/neotest-rspec" } }, - }, -}