52 lines
1.0 KiB
Lua
52 lines
1.0 KiB
Lua
return {
|
|
recommended = function()
|
|
return LazyVim.extras.wants({
|
|
ft = "ruby",
|
|
root = "Gemfile",
|
|
})
|
|
end,
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = { ensure_installed = { "ruby" } },
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
solargraph = {},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"mfussenegger/nvim-dap",
|
|
optional = true,
|
|
dependencies = {
|
|
"suketa/nvim-dap-ruby",
|
|
config = function()
|
|
require("dap-ruby").setup()
|
|
end,
|
|
},
|
|
},
|
|
{
|
|
"nvim-neotest/neotest",
|
|
optional = true,
|
|
dependencies = {
|
|
"olimorris/neotest-rspec",
|
|
},
|
|
opts = {
|
|
adapters = {
|
|
["neotest-rspec"] = {
|
|
-- NOTE: By default neotest-rspec uses the system wide rspec gem instead of the one through bundler
|
|
-- rspec_cmd = function()
|
|
-- return vim.tbl_flatten({
|
|
-- "bundle",
|
|
-- "exec",
|
|
-- "rspec",
|
|
-- })
|
|
-- end,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|