diff --git a/lua/plugins/conform-nvim.lua b/lua/plugins/conform-nvim.lua index 1e766eb..aa7355e 100644 --- a/lua/plugins/conform-nvim.lua +++ b/lua/plugins/conform-nvim.lua @@ -58,6 +58,7 @@ return { python = { "black" }, md = { "markdownlint-cli2" }, markdown = { "markdownlint-cli2" }, + json = { "prettierd" } }, -- The options you set here will be merged with the builtin formatters. -- You can also define any custom formatters here. diff --git a/lua/plugins/mason-nvim.lua b/lua/plugins/mason-nvim.lua index 0e63134..da0e743 100644 --- a/lua/plugins/mason-nvim.lua +++ b/lua/plugins/mason-nvim.lua @@ -17,6 +17,8 @@ return { "black", "lua-language-server", "gitui", + "json-lsp" + "prettierd" }, }, ---@param opts MasonSettings | {ensure_installed: string[]}