add json5 support

This commit is contained in:
Joseph Hanson 2024-11-17 11:03:08 -06:00
parent 2428f5c26e
commit 30e11577c3
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -1,5 +1,8 @@
{ {
"editor.fontFamily": "FiraCode Nerd Font", "editor.fontFamily": "FiraCode Nerd Font",
"files.associations": {
"*.json5": "jsonc",
},
"editor.hover.delay": 1500, "editor.hover.delay": 1500,
"editor.bracketPairColorization.enabled": true, "editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true, "editor.guides.bracketPairs": true,
@ -29,5 +32,8 @@
"nixpkgsInputName": "nixpkgs" "nixpkgsInputName": "nixpkgs"
} }
} }
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
} }
} }