Files
nvim-config/lsp/ruby-lsp.lua
2026-04-27 22:58:45 +02:00

14 lines
229 B
Lua

return {
filetypes = { "ruby" },
cmd = { "ruby-lsp" }, -- or { "bundle", "exec", "ruby-lsp" },
root_markers = { "Gemfile", ".git" },
init_options = {
formatter = 'standard',
linters = { 'standard' },
},
}