Skip to content

Commit

Permalink
🔧 Update VSCode config
Browse files Browse the repository at this point in the history
  • Loading branch information
stoe committed Jul 16, 2023
1 parent 998d18a commit b730547
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,32 +212,37 @@
],
"settingsSync.ignoredSettings": [],
"shellcheck.executablePath": "/usr/local/bin/shellcheck",
"telemetry.enableTelemetry": false,
"telemetry.telemetryLevel": "off",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.defaultProfile.linux": "zsh (login)",
"terminal.integrated.defaultProfile.osx": "zsh (login)",
"terminal.integrated.defaultProfile.windows": "pwsh",
"terminal.integrated.fontFamily": "'MesloLGS NF', 'FiraCode Nerd Font Mono', Menlo, 'DejaVu Sans Mono', 'Lucida Console', monospace",
"terminal.integrated.fontSize": 16,
"terminal.integrated.profiles.osx": {
"zsh (login)": {
"path": "zsh",
"args": [
"-l"
]
],
"color": "terminal.ansiGreen"
},
"bash (login)": {
"path": "bash",
"args": [
"-l"
]
],
"icon": "terminal-bash",
"color": "terminal.ansiBlue"
},
"pwsh": {
"path": "/usr/local/bin/pwsh",
"args": []
"args": [],
"icon": "terminal-powershell",
"color": "terminal.ansiMagenta"
}
},
"terminal.integrated.tabs.enabled": false,
"terminal.integrated.tabs.enabled": true,
"terminal.integrated.tabs.location": "right",
"terraform.languageServer.path": "/usr/local/bin/terraform",
"[terraform]": {
"editor.formatOnSave": true
Expand Down Expand Up @@ -335,7 +340,10 @@
"!Split",
"!Split sequence"
],
"yaml.schemas": {
"https://json.schemastore.org/github-issue-config.json": "**/.github/ISSUE_TEMPLATE/config.yml"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
}

0 comments on commit b730547

Please sign in to comment.