Skip to content

Instantly share code, notes, and snippets.

@Ferdzzzzzzzz
Last active July 19, 2023 08:16
Show Gist options
  • Save Ferdzzzzzzzz/05b30bce28c8a8c7d861f04e25dd3001 to your computer and use it in GitHub Desktop.
Save Ferdzzzzzzzz/05b30bce28c8a8c7d861f04e25dd3001 to your computer and use it in GitHub Desktop.
VSCode Setup
{
"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