From 67faeaa71a1799cc2629a7340da0b8656b19ca17 Mon Sep 17 00:00:00 2001 From: Ralph Date: Sun, 7 Apr 2024 00:00:14 -0700 Subject: [PATCH] lsp + test.lua --- lua/plugins/lsp.lua | 1 + lua/plugins/test.lua | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 lua/plugins/test.lua 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" } }, + }, +}