Files
lazy_config/lua/plugins/langs/ruby/nvim-lspconfig.lua
2026-01-10 16:11:53 -05:00

14 lines
236 B
Lua

return {
"neovim/nvim-lspconfig",
opts = {
servers = {
ruby_lsp = {
mason = false,
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
single_file_support = false,
root_partern = { ".git" },
},
},
},
}