Skip to content

Instantly share code, notes, and snippets.

@xfenix
Created August 18, 2020 19:01
Show Gist options
  • Save xfenix/54fd8b808aedd4b2c1890325fc8d3d1d to your computer and use it in GitHub Desktop.
Save xfenix/54fd8b808aedd4b2c1890325fc8d3d1d to your computer and use it in GitHub Desktop.
My Vscode setup (python, black, isort, react autoformat)
akamud.vscode-theme-onedark
alefragnani.project-manager
amatiasq.sort-imports
bibhasdn.django-html
bungcip.better-toml
eamodio.gitlens
ecmel.vscode-html-css
emmanuelbeziat.vscode-great-icons
esbenp.prettier-vscode
golang.go
jpoissonnier.vscode-styled-components
liximomo.sftp
matangover.mypy
mrmlnc.vscode-scss
ms-azuretools.vscode-docker
ms-python.python
ms-vscode.cpptools
octref.vetur
redhat.java
shd101wyy.markdown-preview-enhanced
syler.sass-indented
tcwalther.cython
VisualStudioExptTeam.vscodeintellicode
vscjava.vscode-java-debug
vscjava.vscode-java-dependency
vscjava.vscode-java-pack
vscjava.vscode-java-test
vscjava.vscode-maven
william-voyek.vscode-nginx
Zignd.html-css-class-completion
{
"editor.fontSize": 14,
"workbench.colorTheme": "Atom One Dark",
"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": "vscode-great-icons",
"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",
"window.zoomLevel": 0,
"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": "Microsoft",
"explorer.confirmDelete": false,
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"python.autoComplete.addBrackets": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"python.formatting.blackPath": "/usr/local/bin/black",
"editor.fontLigatures": true,
"projectManager.git.baseFolders": [
"~/web/",
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"python.sortImports.path": "/usr/local/bin/isort"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment