Skip to content

Instantly share code, notes, and snippets.

@julie-ng
Created October 5, 2019 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julie-ng/a2d53686dcf3c755b47d00a073a9672d to your computer and use it in GitHub Desktop.
Save julie-ng/a2d53686dcf3c755b47d00a073a9672d to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "One Monokai",
"workbench.colorCustomizations": {
"[One Monokai]": {
// "editor.background": "#282c34"
}
},
"editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.insertSpaces": false,
"files.exclude": {
"_site": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.sass-cache": true,
"**/.svn": true,
"**/CVS": true,
"**/node_modules": true
},
"files.trimTrailingWhitespace": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": "400",
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.lineHeight": 1.2,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"files.associations": {
"*.tmpl": "html",
"*.html.erb": "html"
},
"merge-conflict.codeLens.enabled": false,
"merge-conflict.decorators.enabled": false,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"files.hotExit": "off",
"editor.wordWrap": "on",
"window.openFoldersInNewWindow": "on",
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"emmet.showAbbreviationSuggestions": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"plantuml.render": "PlantUMLServer",
"plantuml.server": "http://localhost:8080",
"plantuml.exportOutDir": ".",
"plantuml.exportFormat": "png",
"plantuml.exportSubFolder": false,
"search.exclude": {
"**/docs": true
},
"breadcrumbs.enabled": false,
"workbench.editor.showTabs": true,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment