Last active
May 17, 2019 21:26
-
-
Save eoussama/8407ebfb3c93428417b742c25f9ce621 to your computer and use it in GitHub Desktop.
VSCode Configuration
This file contains hidden or 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
gitignore | |
angular essenssials | |
bracket pair colorizer | |
auto rename tag | |
material icon theme | |
scss formater | |
intellicode | |
css class auto completion | |
one dark pro |
This file contains hidden or 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
{ | |
// Terminal | |
"terminal.integrated.shell.windows": "cmd.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"/k", | |
"C:\\Program Files\\Git\\bin\\bash.exe" | |
], | |
// PHP | |
"php.validate.executablePath": "C:\\xampp\\php\\php.exe", | |
// Import update | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
// HTML | |
"html.format.indentHandlebars": true, | |
// CSS | |
"scssFormatter.singleQuote": true, | |
// Editor | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'Fira Code Retina', 'Noto Mono', 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'", | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2, | |
// Other | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.iconTheme": "material-icon-theme", | |
"breadcrumbs.enabled": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.insertFinalNewline": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment