Skip to content

Instantly share code, notes, and snippets.

@eoussama
Last active May 17, 2019 21:26
Show Gist options
  • Save eoussama/8407ebfb3c93428417b742c25f9ce621 to your computer and use it in GitHub Desktop.
Save eoussama/8407ebfb3c93428417b742c25f9ce621 to your computer and use it in GitHub Desktop.
VSCode Configuration
gitignore
angular essenssials
bracket pair colorizer
auto rename tag
material icon theme
scss formater
intellicode
css class auto completion
one dark pro
{
// 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