Skip to content

Instantly share code, notes, and snippets.

@annielmenezes
Last active January 13, 2020 16:02
Show Gist options
  • Save annielmenezes/bfb33e0e33d0f18969774f48bc71fb53 to your computer and use it in GitHub Desktop.
Save annielmenezes/bfb33e0e33d0f18969774f48bc71fb53 to your computer and use it in GitHub Desktop.
My personal VS Code settings
{
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.fontWeight": "500",
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderLineHighlight": "all",
"editor.rulers": [
80,
120
],
"editor.suggestSelection": "first",
"terminal.integrated.shell.linux": "/bin/zsh",
"workbench.colorTheme": "Dracula Soft",
"window.menuBarVisibility": "toggle",
"prettier.singleQuote": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"terminal.integrated.cursorStyle": "line",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"atomKeymap.promptV3Features": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.iconTheme": "material-icon-theme",
"gitlens.currentLine.scrollable": false,
"terminal.integrated.rendererType": "dom",
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment