From bdb9375efea2c7cf48959f391c075ba7ad245bcf Mon Sep 17 00:00:00 2001 From: Ralph Date: Fri, 5 Apr 2024 00:25:18 -0700 Subject: [PATCH] add rubocop --- lua/plugins/lsp.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/plugins/lsp.lua diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua new file mode 100644 index 0000000..abb6f0f --- /dev/null +++ b/lua/plugins/lsp.lua @@ -0,0 +1,14 @@ +return { + { + "williamboman/mason.nvim", + opts = { + -- https://github.com/williamboman/mason.nvim?tab=readme-ov-file#introduction + -- https://mason-registry.dev/registry/list + ensure_installed = { + "rubocop", + "stylua", + "shfmt", + }, + }, + }, +}