diff options
Diffstat (limited to '.config/nvim/lsp/solargraph.lua')
| -rw-r--r-- | .config/nvim/lsp/solargraph.lua | 24 | 
1 files changed, 0 insertions, 24 deletions
diff --git a/.config/nvim/lsp/solargraph.lua b/.config/nvim/lsp/solargraph.lua deleted file mode 100644 index 6f52195..0000000 --- a/.config/nvim/lsp/solargraph.lua +++ /dev/null @@ -1,24 +0,0 @@ ----@brief ---- ---- https://solargraph.org/ ---- ---- solargraph, a language server for Ruby ---- ---- You can install solargraph via gem install. ---- ---- ```sh ---- gem install --user-install solargraph ---- ``` - ----@type vim.lsp.Config -return { -  cmd = { 'solargraph', 'stdio' }, -  settings = { -    solargraph = { -      diagnostics = true, -    }, -  }, -  init_options = { formatting = true }, -  filetypes = { 'ruby' }, -  root_markers = { 'Gemfile', '.git' }, -}  |