From e5882d11c857e59dbdf7978b99eb3e8756012be5 Mon Sep 17 00:00:00 2001 From: dineshsalunke Date: Tue, 13 Feb 2024 08:42:41 +0530 Subject: [PATCH] refactor: add prettierd formatting for jsonc filetype --- lua/plugins/coding.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua index 9f31453..25b221a 100644 --- a/lua/plugins/coding.lua +++ b/lua/plugins/coding.lua @@ -161,6 +161,9 @@ return { json = { require("formatter.filetypes.typescript").prettierd, }, + jsonc = { + require("formatter.filetypes.typescript").prettierd, + }, go = { require("formatter.filetypes.go").gofumpt, require("formatter.filetypes.go").goimports,