Created
May 7, 2018 13:07
-
-
Save FarisMarouane/9eb507cd0c9fae21d9631b18711f3eb3 to your computer and use it in GitHub Desktop.
vscode 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
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 |
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
[ | |
{ | |
"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" | |
} | |
] |
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
{ | |
"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