Skip to content

Instantly share code, notes, and snippets.

@filipelinhares
Created April 30, 2023 19:22
Show Gist options
  • Save filipelinhares/5da1d0b1e519a54100d45e18f50395bd to your computer and use it in GitHub Desktop.
Save filipelinhares/5da1d0b1e519a54100d45e18f50395bd to your computer and use it in GitHub Desktop.
VSCode config
{
"workbench.colorCustomizations": {
// "statusBar.background" : "#222",
"statusBar.foreground": "#ccc",
"statusBar.noFolderBackground" : "#212121",
"statusBar.debuggingBackground": "#263238"
},
"editor.renderWhitespace": "all", // removes whitespace chars
"editor.renderLineHighlight": "none", // removes line highlight
"editor.glyphMargin": false, // removes the space used mainly for debugging indicators
"explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
"workbench.activityBar.visible": false,
"workbench.editor.showIcons": false,
"workbench.colorTheme": "Rosé Pine (no italics)",
"security.workspace.trust.untrustedFiles": "open",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.wordWrap": "on",
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.trimTrailingWhitespace": true,
"workbench.startupEditor": "none",
"workbench.editor.splitInGroupLayout": "vertical",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"githubPullRequests.pullBranch": "never",
"editor.fontSize": 24,
"editor.fontFamily": "Fira Mono"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment