Skip to content

Instantly share code, notes, and snippets.

@FarisMarouane
Created May 7, 2018 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FarisMarouane/9eb507cd0c9fae21d9631b18711f3eb3 to your computer and use it in GitHub Desktop.
Save FarisMarouane/9eb507cd0c9fae21d9631b18711f3eb3 to your computer and use it in GitHub Desktop.
vscode settings
code --install-extension Orta.vscode-jest \
--install-extension PKief.material-icon-theme \
--install-extension PeterJausovec.vscode-docker \
--install-extension bierner.markdown-preview-github-styles \
--install-extension christian-kohler.path-intellisense \
--install-extension clinyong.vscode-css-modules \
--install-extension codezombiech.gitignore \
--install-extension dbaeumer.vscode-eslint \
--install-extension eamodio.gitlens \
--install-extension ecmel.vscode-html-css \
--install-extension esbenp.prettier-vscode \
--install-extension formulahendry.auto-close-tag \
--install-extension mikestead.dotenv \
--install-extension ms-vscode.atom-keybindings \
--install-extension ms-vscode.azure-account \
--install-extension ms-vscode.node-debug2 \
--install-extension msjsdiag.debugger-for-chrome \
--install-extension shinnn.stylelint \
--install-extension xyz.plsql-language \
--install-extension zhuangtongfa.Material-theme
[
{
"key": "shift+alt+[Period]",
"command": "-gitlens.showCommitSearch",
"when": "gitlens:enabled"
},
{
"key": "shift+alt+[Period]",
"command": "-gitlens.showCommitSearch",
"when": "gitlens:enabled && gitlens:keymap == 'standard'"
},
{
"key": "ctrl+alt+f",
"command": "eslint.executeAutofix"
}
]
{
"npm.packageManager": "yarn",
"eslint.packageManager": "yarn",
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.disableLanguages": [
"vue",
"javascript",
"javascriptreact",
],
"workbench.startupEditor": "welcomePage",
"extensions.ignoreRecommendations": false,
"window.zoomLevel": 0,
"editor.tabSize": 2,
"jest.autoEnable": false,
"docker.showExplorer": false,
"gitlens.gitExplorer.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.hovers.currentLine.enabled": false,
"editor.rulers": [
80
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment