Skip to content

Instantly share code, notes, and snippets.

@eloyvega
Created March 28, 2021 01:00
Show Gist options
  • Save eloyvega/c9025b6f79ca40084ec7e25d5a888ab0 to your computer and use it in GitHub Desktop.
Save eloyvega/c9025b6f79ca40084ec7e25d5a888ab0 to your computer and use it in GitHub Desktop.
VSCode settings
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Monokai",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.formatOnSave": true,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.rendererType": "dom",
"terminal.explorerKind": "external",
"terminal.integrated.fontFamily": "MesloLGS NF",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.wordWrap": "on",
// Custom tags for the parser to use
"yaml.customTags": [
"!And",
"!If",
"!Not",
"!Equals",
"!Or",
"!FindInMap sequence",
"!Base64",
"!Cidr",
"!Ref",
"!Sub",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!Select",
"!Select sequence",
"!Split",
"!Join sequence"
],
// Enable/disable default YAML formatter (requires restart)
"yaml.format.enable": true,
"terraform.languageServer": {
"external": true,
"pathToBinary": "",
"args": ["serve"],
"maxNumberOfProblems": 100,
"trace.server": "off"
},
"files.associations": {
"*.tf": "terraform"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment