Skip to content

Commit 7a476ec

Browse files
authored
feat(yaml): Remove prettier & prettierd (#1624)
1 parent 5bead08 commit 7a476ec

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

lua/astrocommunity/pack/yaml/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ This plugin pack does the following:
44

55
- Adds `yaml` Treesitter parser
66
- Adds `yamlls` language server
7-
- Adds `prettierd` formatter

lua/astrocommunity/pack/yaml/init.lua

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -41,28 +41,11 @@ return {
4141
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "yamlls" })
4242
end,
4343
},
44-
{
45-
"jay-babu/mason-null-ls.nvim",
46-
optional = true,
47-
opts = function(_, opts)
48-
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "prettierd" })
49-
end,
50-
},
5144
{
5245
"WhoIsSethDaniel/mason-tool-installer.nvim",
5346
optional = true,
5447
opts = function(_, opts)
55-
opts.ensure_installed =
56-
require("astrocore").list_insert_unique(opts.ensure_installed, { "yaml-language-server", "prettierd" })
48+
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "yaml-language-server" })
5749
end,
5850
},
59-
{
60-
"stevearc/conform.nvim",
61-
optional = true,
62-
opts = {
63-
formatters_by_ft = {
64-
yaml = { "prettierd", "prettier", stop_after_first = true },
65-
},
66-
},
67-
},
6851
}

0 commit comments

Comments
 (0)