From 222fefd38f7ae89419a42a4251a0699372fd3f0b Mon Sep 17 00:00:00 2001 From: MoonFruit Date: Thu, 9 Jan 2025 11:23:44 +0800 Subject: [PATCH] Add LazyVim config --- .lazy.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .lazy.lua diff --git a/.lazy.lua b/.lazy.lua new file mode 100644 index 0000000..2618d77 --- /dev/null +++ b/.lazy.lua @@ -0,0 +1,26 @@ +return { + { + "neovim/nvim-lspconfig", + opts = { + servers = { + rubocop = { + cmd = { "brew", "rubocop", "--lsp" }, + }, + sorbet = { + cmd = { "brew", "typecheck", "--lsp" }, + }, + }, + }, + }, + { + "stevearc/conform.nvim", + opts = { + formatters = { + rubocop = { + command = "brew", + prepend_args = { "rubocop" }, + }, + }, + }, + }, +}