Skip to content

Instantly share code, notes, and snippets.

@Justkant
Last active October 2, 2019 09:57
Show Gist options
  • Save Justkant/631e1e299ada1a09945ca71376145e82 to your computer and use it in GitHub Desktop.
Save Justkant/631e1e299ada1a09945ca71376145e82 to your computer and use it in GitHub Desktop.
VS Code Settings
// Placez vos combinaisons de touches dans ce fichier pour remplacer les valeurs par défaut
[
{
"key": "ctrl+alt+f",
"command": "eslint.executeAutofix",
"when": "editorTextFocus && !editorReadonly"
}
]
{
/* Npm */
"npm.packageManager": "yarn",
"npm.enableScriptExplorer": true,
/* Eslint */
"eslint.packageManager": "yarn",
/* Workbench */
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.revealIfOpen": true,
/* Editor */
"editor.fontLigatures": true,
"editor.fontFamily": "FiraCode-Retina, Menlo, Monaco, 'Courier New', monospace",
"editor.cursorSmoothCaretAnimation": true,
"editor.renderWhitespace": "boundary",
"editor.suggest.localityBonus": true,
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
/* Material Icon */
"material-icon-theme.activeIconPack": "react_redux",
/* Git */
"git.autofetch": true,
"git.allowForcePush": true,
"git.alwaysShowStagedChangesResourceGroup": true,
"git.autoStash": true,
"git.enableCommitSigning": true,
"git.rebaseWhenSync": true,
/* Gitlens */
"gitlens.hovers.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.currentLine.enabled": false,
/* Window */
"window.restoreWindows": "folders",
"window.restoreFullscreen": true,
"window.closeWhenEmpty": true,
/* Breadcrumbs */
"breadcrumbs.enabled": true,
/* Emmet */
"emmet.excludeLanguages": ["markdown", "javascriptreact"],
/* JS imports */
"javascript.preferences.importModuleSpecifier": "non-relative",
/* Terminal */
"terminal.integrated.shell.osx": "/usr/local/bin/zsh",
"terminal.integrated.inheritEnv": false,
/* Github PR */
"githubPullRequests.defaultMergeMethod": "squash",
"githubPullRequests.telemetry.enabled": false,
}
#!/bin/sh
code --install-extension bierner.markdown-preview-github-styles \
--install-extension bungcip.better-toml \
--install-extension christian-kohler.path-intellisense \
--install-extension clinyong.vscode-css-modules \
--install-extension codezombiech.gitignore \
--install-extension dbaeumer.vscode-eslint \
--install-extension dsznajder.es7-react-js-snippets \
--install-extension eamodio.gitlens \
--install-extension ecmel.vscode-html-css \
--install-extension esbenp.prettier-vscode \
--install-extension GitHub.vscode-pull-request-github \
--install-extension hangxingliu.vscode-systemd-support \
--install-extension hbenl.vscode-mocha-test-adapter \
--install-extension hbenl.vscode-test-explorer \
--install-extension joaompinto.vscode-graphviz \
--install-extension kumar-harsh.graphql-for-vscode \
--install-extension mikestead.dotenv \
--install-extension ms-azuretools.vscode-docker \
--install-extension ms-kubernetes-tools.vscode-kubernetes-tools \
--install-extension ms-vscode.Go \
--install-extension ms-vscode.node-debug2 \
--install-extension msjsdiag.debugger-for-chrome \
--install-extension msjsdiag.vscode-react-native \
--install-extension OfHumanBondage.react-proptypes-intellisense \
--install-extension PKief.material-icon-theme \
--install-extension Prisma.prisma \
--install-extension redhat.vscode-yaml \
--install-extension rtbenfield.vscode-jest-test-adapter \
--install-extension shinnn.stylelint \
--install-extension xabikos.JavaScriptSnippets \
--install-extension xyz.plsql-language \
--install-extension zhuangtongfa.Material-theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment