diff --git a/lua/astrocommunity/pack/json/README.md b/lua/astrocommunity/pack/json/README.md index 980b81a72..993fadf2d 100644 --- a/lua/astrocommunity/pack/json/README.md +++ b/lua/astrocommunity/pack/json/README.md @@ -4,4 +4,3 @@ This plugin pack does the following: - Adds `json` and `jsonc` Treesitter parsers - Adds `jsonls` language server -- Adds `prettierd` formatter diff --git a/lua/astrocommunity/pack/json/json.lua b/lua/astrocommunity/pack/json/json.lua index 58a32d323..bc64f01c6 100644 --- a/lua/astrocommunity/pack/json/json.lua +++ b/lua/astrocommunity/pack/json/json.lua @@ -20,13 +20,4 @@ return { utils.list_insert_unique(opts.ensure_installed, "jsonls") end, }, - { - "jay-babu/mason-null-ls.nvim", - opts = function(_, opts) - -- Ensure that opts.ensure_installed exists and is a table. - if not opts.ensure_installed then opts.ensure_installed = {} end - -- Add go lsps to opts.ensure_installed using vim.list_extend. - utils.list_insert_unique(opts.ensure_installed, "prettierd") - end, - }, }