Files
lazy_config/lua/plugins/langs/ruby/nvim-lspconfig.lua
Daveanand Mannie e9fc5490ac [add] lsp config update for multi project ruby
I'm still a bit hazy on how to integrate ruby's ecosystem
2026-01-21 09:49:35 -05:00

22 lines
481 B
Lua

return {
"neovim/nvim-lspconfig",
opts = {
servers = {
ruby_lsp = {
mason = false,
single_file_support = false,
-- cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
init_options = { enabledFeatures = { formatter = "none", linters = {} } },
settings = {
ruby = {
diagnostics = {
rubocop = false,
},
},
},
formatter = false,
},
},
},
}