From 442a8cb19991487901db19ff92d628ef16f2308d Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Mon, 8 Apr 2024 22:53:59 -0700 Subject: [PATCH] test for ruby --- lua/plugins/extras_test.lua | 9 +-------- lua/plugins/treesitter.lua | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/lua/plugins/extras_test.lua b/lua/plugins/extras_test.lua index 756a597..cc6912e 100644 --- a/lua/plugins/extras_test.lua +++ b/lua/plugins/extras_test.lua @@ -4,15 +4,8 @@ return { "nvim-neotest/neotest", opts = { adapters = { - "neotest-rspec" + ["neotest-rspec"] = {} } }, - dependencies = { - "nvim-treesitter/nvim-treesitter", - "olimorris/neotest-rspec", - }, - -- config = function(_, opts) - -- require("neotest").setup(opts) - -- end }, } diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 2c2eb91..6ab7d5b 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -3,7 +3,7 @@ return { "nvim-treesitter/nvim-treesitter", opts = { ensure_installed = { - "ruby" + "ruby", } }, },