Last active
December 3, 2017 19:41
-
-
Save bvipul/c278ca80b43092a4d230d4a2b5f22c59 to your computer and use it in GitHub Desktop.
My 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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Slime", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontSize": 13, | |
"editor.fontLigatures":true, | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"editor.fontFamily": "Fira Code", | |
"editor.tabCompletion": true, | |
"editor.lineHeight": 25, | |
"editor.minimap.enabled": false, | |
"editor.cursorBlinking": "phase", | |
"editor.showFoldingControls": "always", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"workbench.statusBar.visible": true, | |
"explorer.openEditors.visible": 0, | |
"workbench.panel.location": "right", | |
"emmet.includeLanguages": {"laravel-blade": "php"}, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.syntaxProfiles": {"blade":"html"} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment