From 77c46a3e324264380ff9f922d888e37ba37e05eb Mon Sep 17 00:00:00 2001 From: Adam Cooper Date: Fri, 14 Feb 2025 07:19:12 -0500 Subject: [PATCH] [lazyvim] Add plugin: Mason with opts --- nvim/lua/plugins/custom.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nvim/lua/plugins/custom.lua b/nvim/lua/plugins/custom.lua index 5e16623..5371f28 100644 --- a/nvim/lua/plugins/custom.lua +++ b/nvim/lua/plugins/custom.lua @@ -17,4 +17,15 @@ return { "monkoose/parsley" } }, + { + "williamboman/mason.nvim", + opts = { + ensure_installed = { + "stylua", + "shellcheck", + "shfmt", + "flake8", + }, + }, + }, }