From b5a9ef780d3a0e61a897eb165c5596180c07e0dd Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Sun, 6 Aug 2023 11:46:37 +0200 Subject: [PATCH] fix non-available plugins --- plugins/mason.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/mason.lua b/plugins/mason.lua index eb673d5..6566f34 100644 --- a/plugins/mason.lua +++ b/plugins/mason.lua @@ -19,7 +19,7 @@ return { -- add more things to the ensure_installed table protecting against community packs modifying it opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { -- "prettier", - "stylua", + -- "stylua", }) end, }, @@ -29,7 +29,7 @@ return { opts = function(_, opts) -- add more things to the ensure_installed table protecting against community packs modifying it opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { - "python", + -- "python", }) end, },