From a48af40c68e1acce2f5fbbfddfa83fe1a2d3be5b Mon Sep 17 00:00:00 2001 From: Marcelo Jacobus Date: Sun, 29 Jun 2025 22:22:36 -0300 Subject: [PATCH] Fix after plugin --- after/ftplugin/ruby.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/after/ftplugin/ruby.lua b/after/ftplugin/ruby.lua index 6b97de6..e18198a 100644 --- a/after/ftplugin/ruby.lua +++ b/after/ftplugin/ruby.lua @@ -1,10 +1,10 @@ -- after/ftplugin/ruby.lua -local lspconfig = require("lspconfig") -lspconfig.ruby_lsp.setup({ - cmd = { vim.fn.expand("~/.asdf/shims/ruby"), "-S", "ruby-lsp" }, -}) +-- local lspconfig = require("lspconfig") +-- lspconfig.ruby_lsp.setup({ +-- cmd = { vim.fn.expand("~/.asdf/shims/ruby"), "-S", "ruby-lsp" }, +-- }) -local map = LazyVim.safe_keymap_set +local map = vim.keymap.set -- map("n", "x", ":lua RunInTerminal('ruby ' .. vim.fn.expand('%'), true)", { buffer = true })