This commit is contained in:
Djkáťo 2024-02-12 15:52:41 +01:00
parent bbf98cedf2
commit 654f200459
2 changed files with 1 additions and 24 deletions

View file

@ -18,7 +18,7 @@ return {
opts = function(_, opts) opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it -- 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, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "prettier", "prettier",
-- "stylua", -- "stylua",
}) })
end, end,

View file

@ -1,23 +0,0 @@
return {
"MunifTanjim/prettier.nvim",
config = function()
prettier.setup({
bin = 'prettierd', -- or `'prettierd'` (v0.23.3+)
filetypes = {
"css",
"graphql",
"html",
"javascript",
"javascriptreact",
"json",
"less",
"markdown",
"scss",
"typescript",
"typescriptreact",
"yaml",
"astro",
},
})
end
}