Skip to content

Instantly share code, notes, and snippets.

@jeffreysbrother
Last active June 13, 2017 17:28
Embed
What would you like to do?
Visual Studio Code settings.json
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 15,
"editor.lineHeight": 23,
"editor.roundedSelection": false,
"editor.renderIndentGuides": true,
"editor.tabCompletion": true,
"editor.matchBrackets": false,
"subtleBrackets.style": {
"borderWidth": "1px",
"borderStyle": "none none dotted none"
},
"editor.wordWrap": "on",
"editor.fontWeight": "normal",
"workbench.iconTheme": "vscode-great-icons",
"files.associations": {
".vimrc": "python"
},
"workbench.tips.enabled": false,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.3,
"terminal.integrated.enableBold": false,
"workbench.activityBar.visible": true,
"explorer.openEditors.visible": 0,
"editor.selectionHighlight": false,
"editor.renderLineHighlight": "gutter",
"editor.fontFamily": "Fira Code, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.minimap.maxColumn": 90,
"css.colorDecorators.enable": false,
"less.colorDecorators.enable": false,
"scss.colorDecorators.enable": false,
"json.colorDecorators.enable": false,
"html.suggest.html5": false,
"php.suggest.basic": false,
"javascript.nameSuggestions": false,
"editor.suggestOnTriggerCharacters": false,
"editor.parameterHints": false,
"workbench.sideBar.location": "left",
"emmet.syntaxProfiles": {
"php": "html"
}
}
@jeffreysbrother
Copy link
Author

jeffreysbrother commented Jun 7, 2017

##Extentions Used##

Theme: Dark+

Babel ES6/ES7 (this fixed a syntax highlighting issue in my Yeoman generator’s gulp file)
ESLint
Highlight-matching-tag
VSCode Great Icons

Project Manager
Bookmarks
Htmltagwrap
Path Intellisense
Better line select
Atom JavaScript snippet
HTML Snippets
Subtle Match Brackets
Terminal Here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment