Skip to content

Instantly share code, notes, and snippets.

@pvgdevelop
Created October 15, 2022 01:13
Show Gist options
  • Save pvgdevelop/024966b0ba811e9f570ee643de07d1a3 to your computer and use it in GitHub Desktop.
Save pvgdevelop/024966b0ba811e9f570ee643de07d1a3 to your computer and use it in GitHub Desktop.
VS Code settings
{
"terminal.integrated.fontSize": 13,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"python.pythonPath": "/usr/local/bin/python3",
"files.autoSave": "onFocusChange",
"editor.fontSize": 14,
"terminal.external.osxExec": "iTerm2.app",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontFamily": "Inconsolata-g for Powerline",
"[python]": {
"editor.wordBasedSuggestions": false
},
"python.defaultInterpreterPath": "/usr/local/bin/python3",
"security.workspace.trust.untrustedFiles": "open",
"editor.codeLensFontFamily": "Operator Mono Lig, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"workbench.colorTheme": "Snazzy Operator",
"explorer.compactFolders": false,
"workbench.iconTheme": "vscode-icons",
"editor.tabSize": 2,
"eslint.codeActionsOnSave.rules": [],
"eslint.alwaysShowStatus": true,
"eslint.options": {},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"javascript.format.enable": false,
"breadcrumbs.showFields": false,
"python.analysis.diagnosticSeverityOverrides": {},
"prettier.jsxSingleQuote": true,
"javascript.preferences.quoteStyle": "single",
"prettier.singleQuote": true,
"auto-close-tag.insertSpaceBeforeSelfClosingTag": true,
"files.trimTrailingWhitespace": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,
"vsicons.dontShowNewVersionMessage": true,
"window.zoomLevel": 1,
"github.gitProtocol": "ssh",
"git.verboseCommit": true,
"git.confirmSync": false,
"git.ignoreRebaseWarning": true,
"editor.fontFamily": "Operator Mono Lig, Menlo, Monaco, 'Courier New', monospace"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment