Created
October 15, 2022 01:13
-
-
Save pvgdevelop/024966b0ba811e9f570ee643de07d1a3 to your computer and use it in GitHub Desktop.
VS Code settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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