mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
10 lines
296 B
Lua
10 lines
296 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
opts = function(_, opts)
|
|
print("heeeey")
|
|
opts.servers = opts.servers or {}
|
|
opts.servers.ruby_lsp = vim.tbl_deep_extend("force", opts.servers.ruby_lsp or {}, {
|
|
cmd = { vim.fn.expand("~/.asdf/shims/ruby"), "-S", "ruby-lsp" },
|
|
})
|
|
end,
|
|
}
|