Skip to content

Instantly share code, notes, and snippets.

@WengerK
Last active May 10, 2017 09:33
Show Gist options
  • Save WengerK/5aba0f269467748a44f48b15b75b3638 to your computer and use it in GitHub Desktop.
Save WengerK/5aba0f269467748a44f48b15b75b3638 to your computer and use it in GitHub Desktop.
VS Code - C'est mieux

Article Ressources - VS Code, c'est mieux !

This is the Gist repository for my article VS Code, c'est mieux.

Be aware that this article has been wrote for the Blog of Antistatique — Web Agency in Lausanne, Switzerland. A place where I work as Full Stack Web Developer.

Feel free to read it the full article on Medium or check it out on Antistatique.

Content of this Gist :

  • settings.json : VS Code settings.json
// Place your settings in this file to overwrite the default settings
{
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.scrollBeyondLastLine": false,
"editor.renderWhitespace": "boundary",
"files.trimTrailingWhitespace": true,
"workbench.activityBar.visible": false,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"workbench.statusBar.visible": true,
"editor.wordWrap": "on",
"sync.gist": "",
"sync.lastUpload": "",
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.lastDownload": "",
"sync.version": 262,
"sync.showSummary": true,
"sync.forceDownload": false,
"sync.anonymousGist": false,
"sync.host": "",
"sync.pathPrefix": "",
"window.zoomLevel": -1,
"workbench.colorTheme": "One Dark",
"workbench.iconTheme": "material-icon-theme",
"explorer.openEditors.visible": 0,
"workbench.colorCustomizations":{
"activityBar.background": "#21252B",
"editorGroup.background": "#21252B",
"sideBar.background": "#21252B",
"titleBar.activeBackground": "#21252B",
"titleBar.inactiveBackground": "#21252B",
"tab.activeBackground": "#282c34",
"tab.inactiveBackground": "#21252B",
"list.activeSelectionForeground": "#D7DAE0",
"list.highlightForeground": "#D7DAE0",
"list.activeSelectionBackground": "#2C313A",
"list.focusBackground": "#2C313A",
"sideBarTitle.foreground": "#9DA5B3",
"editor.selectionBackground": "#3E4450",
"editor.selectionHighlightBackground": "#3E4450",
"statusBar.background": "#21252B",
"statusBar.foreground": "#9DA5B3",
"statusBar.debuggingBackground": "#511f1f",
"statusBar.noFolderBackground": "#0A0A0D",
"editorGroupHeader.tabsBackground": "#21252B",
"sideBarSectionHeader.background": "#2C313A",
"foreground": "#9DA5B3",
"editor.findMatchBackground": "#3E4450",
"editor.findRangeHighlightBackground": "#3E4450",
"editor.findMatchHighlightBackground": "#3E4450"
},
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"workbench.welcome.enabled": false,
"editor.formatOnPaste": false,
"path-intellisense.showHiddenFiles": true,
"php.suggest.basic": true,
/* Ignore some D8 paths */
"crane.ignoredPaths": [
"sites/default/files/*",
"vendor/*",
"core/themes/*",
"core/tests/*",
"core/scripts/*",
"core/profiles/*",
"core/misc/*",
"core/assets/vendor/*",
"themes/*",
"sites/*"
],
/* Files exclude from tree */
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.idea": true
},
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true,
"editor.rulers": [
80
],
"editor.overviewRulerBorder": false,
"editor.renderIndentGuides": true,
"auto-close-tag.SublimeText3Mode": true,
"editor.cursorBlinking": "phase"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment