Created
February 1, 2021 00:55
-
-
Save xfenix/fc8e57b6e18429267b21b32caed8fa73 to your computer and use it in GitHub Desktop.
My config
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
{ | |
"editor.fontSize": 14, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true | |
}, | |
"git.autofetch": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.codeLens.enabled": false, | |
"editor.minimap.enabled": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.wordWrap": "on", | |
"gitlens.historyExplorer.enabled": true, | |
"git.confirmSync": false, | |
"emmet.includeLanguages": { | |
"plaintext": "html" | |
}, | |
"editor.renderWhitespace": "all", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"explorer.confirmDragAndDrop": false, | |
"gitlens.views.fileHistory.enabled": true, | |
"gitlens.views.lineHistory.enabled": true, | |
"editor.fontFamily": "FiraCode-Retina", | |
"git.enableSmartCommit": true, | |
"emmet.triggerExpansionOnTab": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"python.jediEnabled": false, | |
"editor.rulers": [120], | |
"editor.wordBasedSuggestions": false, | |
"python.languageServer": "Pylance", | |
"explorer.confirmDelete": false, | |
"python.formatting.provider": "black", | |
"python.autoComplete.addBrackets": true, | |
"editor.formatOnType": true, | |
"editor.formatOnPaste": true, | |
"python.formatting.blackPath": "/usr/local/bin/black", | |
"python.formatting.blackArgs": [ | |
"--line-length", | |
"120" | |
], | |
"editor.fontLigatures": true, | |
"projectManager.git.baseFolders": ["~/web/"], | |
"[python]": { | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
} | |
}, | |
"python.sortImports.path": "/usr/local/bin/isort", | |
"python.sortImports.args": [ | |
"--line-width", | |
"120", | |
"--lines-after-imports", | |
"2", | |
"--no-lines-before", | |
"STDLIB,LOCALFOLDER" | |
], | |
"runOnSave.commands": [ | |
{ | |
"match": ".*\\.py$", | |
"command": "docformatter --in-place ${file}" | |
} | |
], | |
"[go]": { | |
"editor.insertSpaces": true, | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
} | |
}, | |
"workbench.colorTheme": "GitHub Dark", | |
"debug.console.fontSize": 14, | |
"terminal.integrated.fontSize": 14, | |
"customizeUI.stylesheet": { | |
".explorer-viewlet .mac": "font-size: 16px !important;", | |
}, | |
"python.analysis.completeFunctionParens": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment