From aee364212b09ab680eef113897e636a7f0b1cbcb Mon Sep 17 00:00:00 2001 From: Kevin Robayna Date: Fri, 19 Jul 2024 10:01:19 +0100 Subject: [PATCH] fix typo --- lua/lazyvim/plugins/extras/lang/ruby.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/lang/ruby.lua b/lua/lazyvim/plugins/extras/lang/ruby.lua index 344697b2..0b67d0b1 100644 --- a/lua/lazyvim/plugins/extras/lang/ruby.lua +++ b/lua/lazyvim/plugins/extras/lang/ruby.lua @@ -8,7 +8,7 @@ end local lsp = vim.g.lazyvim_ruby_lsp or "ruby_lsp" if vim.fn.has("nvim-0.10") == 0 then -- ruby_lsp does not work well with Neovim < 0.10 - lsp = vim.g.lazyvim_ruby_lsp or "solarpath" + lsp = vim.g.lazyvim_ruby_lsp or "solargraph" end local formatter = vim.g.lazyvim_ruby_formatter or "rubocop"