Last active
July 19, 2023 08:16
-
-
Save fsteenkamp/05b30bce28c8a8c7d861f04e25dd3001 to your computer and use it in GitHub Desktop.
VSCode Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.rulers": [ | |
100 | |
], | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"files.exclude": { | |
// Add files here to hide them | |
".gitignore": true, | |
}, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "comment", | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#ff4081" | |
}, | |
// this is crucial for working with Go Tempaltes | |
"html.format.wrapAttributes": "force-expand-multiline", | |
"html.format.templating": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment