diff --git a/lua/astrocommunity/pack/json/README.md b/lua/astrocommunity/pack/json/README.md index 993fadf2d..980b81a72 100644 --- a/lua/astrocommunity/pack/json/README.md +++ b/lua/astrocommunity/pack/json/README.md @@ -4,3 +4,4 @@ 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 9232373e2..58a32d323 100644 --- a/lua/astrocommunity/pack/json/json.lua +++ b/lua/astrocommunity/pack/json/json.lua @@ -26,7 +26,7 @@ return { -- 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, "prettier") + utils.list_insert_unique(opts.ensure_installed, "prettierd") end, }, } diff --git a/lua/astrocommunity/pack/markdown/README.md b/lua/astrocommunity/pack/markdown/README.md index 53686e450..e58642e1d 100644 --- a/lua/astrocommunity/pack/markdown/README.md +++ b/lua/astrocommunity/pack/markdown/README.md @@ -4,4 +4,4 @@ This plugin pack does the following: - Adds `markdown` and `markdown_inline` Treesitter parsers - Adds `marksman` language server -- Adds `prettier` formatter +- Adds `prettierd` formatter diff --git a/lua/astrocommunity/pack/markdown/markdown.lua b/lua/astrocommunity/pack/markdown/markdown.lua index 92747d817..6f734fcef 100644 --- a/lua/astrocommunity/pack/markdown/markdown.lua +++ b/lua/astrocommunity/pack/markdown/markdown.lua @@ -25,7 +25,7 @@ return { opts = function(_, opts) -- Ensure that opts.ensure_installed exists and is a table if not opts.ensure_installed then opts.ensure_installed = {} end - utils.list_insert_unique(opts.ensure_installed, "prettier") + utils.list_insert_unique(opts.ensure_installed, "prettierd") end, }, } diff --git a/lua/astrocommunity/pack/tailwindcss/README.md b/lua/astrocommunity/pack/tailwindcss/README.md index 85c80e84c..a8714a914 100644 --- a/lua/astrocommunity/pack/tailwindcss/README.md +++ b/lua/astrocommunity/pack/tailwindcss/README.md @@ -4,5 +4,5 @@ This plugin pack does the following: - Adds `css` Treesitter parser - Adds `tailwindcss` and `cssls` language servers -- Adds `prettier` and `rustywind` formatters +- Adds `prettierd` and `rustywind` formatters - Adds `roobert/tailwindcss-colorizer-cmp.nvim` to cmp completion sources diff --git a/lua/astrocommunity/pack/tailwindcss/tailwindcss.lua b/lua/astrocommunity/pack/tailwindcss/tailwindcss.lua index 1d07696fb..a7ad35a91 100644 --- a/lua/astrocommunity/pack/tailwindcss/tailwindcss.lua +++ b/lua/astrocommunity/pack/tailwindcss/tailwindcss.lua @@ -27,7 +27,7 @@ return { opts = function(_, opts) -- Ensure that opts.ensure_installed exists and is a table if not opts.ensure_installed then opts.ensure_installed = {} end - utils.list_insert_unique(opts.ensure_installed, { "prettier", "rustywind" }) + utils.list_insert_unique(opts.ensure_installed, { "prettierd", "rustywind" }) end, }, { diff --git a/lua/astrocommunity/pack/typescript/README.md b/lua/astrocommunity/pack/typescript/README.md index ad057da74..97781a0e2 100644 --- a/lua/astrocommunity/pack/typescript/README.md +++ b/lua/astrocommunity/pack/typescript/README.md @@ -4,7 +4,7 @@ This plugin pack does the following: - Adds `typescript`, `javascript`, and `tsx` Treesitter parsers - Adds `tsserver` language server -- Adds `prettier` formatter +- Adds `prettierd` formatter - Adds [JSON language support](../json) - Adds [nvim-dap-vscode-js](https://github.com/mxsdev/nvim-dap-vscode-js) for debugging - Adds [typescript.nvim](https://github.com/jose-elias-alvarez/typescript.nvim) for language specific tooling diff --git a/lua/astrocommunity/pack/typescript/typescript.lua b/lua/astrocommunity/pack/typescript/typescript.lua index 4f461f6bc..db58009e5 100644 --- a/lua/astrocommunity/pack/typescript/typescript.lua +++ b/lua/astrocommunity/pack/typescript/typescript.lua @@ -45,7 +45,7 @@ return { -- Ensure that opts.ensure_installed exists and is a table. if not opts.ensure_installed then opts.ensure_installed = {} end -- Add to opts.ensure_installed using vim.list_extend. - utils.list_insert_unique(opts.ensure_installed, "prettier") + utils.list_insert_unique(opts.ensure_installed, "prettierd") end, }, { diff --git a/lua/astrocommunity/pack/yaml/README.md b/lua/astrocommunity/pack/yaml/README.md index 931dd5bd5..101b67061 100644 --- a/lua/astrocommunity/pack/yaml/README.md +++ b/lua/astrocommunity/pack/yaml/README.md @@ -4,4 +4,4 @@ This plugin pack does the following: - Adds `yaml` Treesitter parser - Adds `yamlls` language server -- Adds `prettier` formatter +- Adds `prettierd` formatter diff --git a/lua/astrocommunity/pack/yaml/yaml.lua b/lua/astrocommunity/pack/yaml/yaml.lua index fe5c8af9b..dd1d289ea 100644 --- a/lua/astrocommunity/pack/yaml/yaml.lua +++ b/lua/astrocommunity/pack/yaml/yaml.lua @@ -26,7 +26,7 @@ return { -- 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, "prettier") + utils.list_insert_unique(opts.ensure_installed, "prettierd") end, }, }