Skip to content

Instantly share code, notes, and snippets.

@KonnorRogers
Created June 9, 2024 04:18
Show Gist options
  • Save KonnorRogers/894e4f6c32eb0f602f79bf8b31c82a09 to your computer and use it in GitHub Desktop.
Save KonnorRogers/894e4f6c32eb0f602f79bf8b31c82a09 to your computer and use it in GitHub Desktop.
Lazy vim disable solargraph and use ruby_lsp
return {
-- add ruby_lsp to lspconfig and disable solargraph
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- ruby_lsp will be automatically installed with mason and loaded with lspconfig
ruby_lsp = {},
-- disable autostart for solargraph
solargraph = {
autostart = false
}
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment