Skip to content

Commit

Permalink
Add LazyVim config
Browse files Browse the repository at this point in the history
  • Loading branch information
moonfruit committed Jan 9, 2025
1 parent b64f1c9 commit 222fefd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .lazy.lua
Original file line number Diff line number Diff line change
@@ -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" },
},
},
},
},
}

0 comments on commit 222fefd

Please sign in to comment.