Skip to content

Instantly share code, notes, and snippets.

@crsayen
Created August 24, 2020 22:18
Show Gist options
  • Save crsayen/6c11d86ded77e35a91daa779e2f3310f to your computer and use it in GitHub Desktop.
Save crsayen/6c11d86ded77e35a91daa779e2f3310f to your computer and use it in GitHub Desktop.
vscode settings.json
{
"editor.fontFamily": "Operator Mono",
"editor.fontLigatures": true,
"editor.fontSize": 20,
"editor.fontWeight": "normal",
"editor.insertSpaces": true,
"editor.formatOnType": true,
"editor.tabSize": 2,
"editor.detectIndentation": true,
"workbench.colorTheme": "Dracula Pro (Van Helsing)",
"explorer.confirmDelete": false,
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "OperatorMono Nerd Font",
"terminal.integrated.fontSize": 20,
"editor.suggestSelection": "first",
"arduino.path": "/Applications",
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"remote.SSH.showLoginTerminal": true,
"editor.mouseWheelZoom": true,
"html-css-class-completion.enableEmmetSupport": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"python.pythonPath": "/usr/local/bin/python3",
"C_Cpp.updateChannel": "Insiders",
"files.autoSave": "off",
"editor.formatOnSave": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"todo-tree.tree.showScanModeButton": false,
"git.enableSmartCommit": true,
"trailing-spaces.trimOnSave": true,
"trailing-spaces.highlightCurrentLine": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"python.languageServer": "Microsoft",
"window.zoomLevel": -1,
"workbench.iconTheme": "vscode-icons",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment