Files
lazy_config/lua/plugins/langs/ruby/nvim-lspconfig.lua
2026-01-12 11:38:14 -05:00

14 lines
265 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" },
},
},
},
}