diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 8be36dc..f0aa937 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -5,6 +5,7 @@ return { -- https://github.com/williamboman/mason.nvim?tab=readme-ov-file#introduction -- https://mason-registry.dev/registry/list ensure_installed = { + -- "ruby-lsp", "rubocop", }, }, diff --git a/lua/plugins/test.lua b/lua/plugins/test.lua new file mode 100644 index 0000000..aa8a342 --- /dev/null +++ b/lua/plugins/test.lua @@ -0,0 +1,7 @@ +return { + { "olimorris/neotest-rspec" }, + { + "nvim-neotest/neotest", + opts = { adapters = { "olimorris/neotest-rspec" } }, + }, +}