Skip to content

Instantly share code, notes, and snippets.

@DamianRivas
Last active December 17, 2021 22:06
Show Gist options
  • Save DamianRivas/b3b9bd65774e4ff4d494957b62b9b988 to your computer and use it in GitHub Desktop.
Save DamianRivas/b3b9bd65774e4ff4d494957b62b9b988 to your computer and use it in GitHub Desktop.
VS Code Settings
{
// TERMINAL
"terminal.integrated.fontFamily": "'Hack Nerd Font', 'Jetbrains Mono', Consolas, monospace",
"terminal.integrated.sendKeybindingsToShell": true,
"workbench.colorCustomizations": {
"terminal.background": "#1D2021",
"terminal.foreground": "#A89984",
"terminalCursor.background": "#A89984",
"terminalCursor.foreground": "#A89984",
"terminal.ansiBlack": "#1D2021",
"terminal.ansiBlue": "#0D6678",
"terminal.ansiBrightBlack": "#665C54",
"terminal.ansiBrightBlue": "#0D6678",
"terminal.ansiBrightCyan": "#8BA59B",
"terminal.ansiBrightGreen": "#95C085",
"terminal.ansiBrightMagenta": "#8F4673",
"terminal.ansiBrightRed": "#FB543F",
"terminal.ansiBrightWhite": "#FDF4C1",
"terminal.ansiBrightYellow": "#FAC03B",
"terminal.ansiCyan": "#8BA59B",
"terminal.ansiGreen": "#95C085",
"terminal.ansiMagenta": "#8F4673",
"terminal.ansiRed": "#FB543F",
"terminal.ansiWhite": "#A89984",
"terminal.ansiYellow": "#FAC03B"
},
// EDITOR
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.detectIndentation": false,
"editor.fontFamily": "'Jetbrains Mono', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.lineHeight": 1.3,
"editor.tabSize": 2,
"files.autoSave": "off",
"files.trimTrailingWhitespace": true,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "City Lights",
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "material-icon-theme",
"workbench.settings.editor": "json",
"workbench.statusBar.visible": true,
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
"window.titleBarStyle": "custom",
"window.newWindowDimensions": "inherit",
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
// EMMET
"emmet.includeLanguages": {
"typescriptreact": "javascriptreact",
"vue-html": "html"
},
// LANGUAGES
"[c]": {
"editor.tabSize": 4
},
"[cpp]": {
"editor.tabSize": 4
},
"[rust]": {
"editor.tabSize": 4
},
"[java]": {
"editor.tabSize": 4
},
"[c#]": {
"editor.tabSize": 4
},
"[csharp]": {
"editor.tabSize": 4
},
"[python]": {
"editor.tabSize": 4
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment