Skip to content

Commit

Permalink
fix(prettier): extend ensure_installed instead of overwriting it. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Mar 10, 2023
1 parent 9d9e6b1 commit 9f30a2e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lua/lazyvim/plugins/extras/formatting/prettier.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
return {
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"prettierd",
},
},
opts = function(_, opts)
table.insert(opts.ensure_installed, "prettierd")
end,
},
{
"jose-elias-alvarez/null-ls.nvim",
Expand Down

0 comments on commit 9f30a2e

Please sign in to comment.