Skip to content

Instantly share code, notes, and snippets.

@charliewilco
Last active January 23, 2019 05:59
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 charliewilco/a69a651dab4565a1573d0b6712faf306 to your computer and use it in GitHub Desktop.
Save charliewilco/a69a651dab4565a1573d0b6712faf306 to your computer and use it in GitHub Desktop.
Oceanic Custom VSCode
{
"editor.fontFamily": "Operator Mono, monospace",
"editor.fontWeight": "300",
"workbench.colorTheme": "Ocean Dark Extended",
"workbench.colorCustomizations": {
"statusBar.background": "#343d46"
},
"workbench.statusBar.feedback.visible": false,
"editor.minimap.enabled": false,
"git.ignoreMissingGitWarning": true,
// Set the default
"editor.formatOnSave": false,
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true
},
"[json]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.formatOnSave": true
},
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"explorer.confirmDelete": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0
}
{
"editor.fontFamily": "Operator Mono, monospace",
"editor.fontSize": 15,
"editor.tabSize": 2,
"workbench.colorTheme": "Ocean Dark Extended",
"workbench.colorCustomizations": {
"statusBar.background": "#343d46"
},
"workbench.statusBar.feedback.visible": false,
"editor.minimap.enabled": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.formatOnSave": false,
"[javascript]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true
},
"[mdx]": {
"editor.wordWrap": "on"
},
"workbench.startupEditor": "newUntitledFile",
"editor.renderControlCharacters": true,
"workbench.sideBar.location": "left",
"window.zoomLevel": 0,
"workbench.statusBar.visible": true,
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"problems.autoReveal": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.fontSize": 13,
"team.showWelcomeMessage": false,
"terminal.integrated.fontFamily": "Operator Mono"
}
{
"editor.fontFamily": "SF Mono, monospace",
"editor.fontSize": 15,
"editor.tabSize": 2,
"workbench.colorTheme": "Ocean Dark Extended",
"workbench.colorCustomizations": {
"statusBar.background": "#343d46"
},
"workbench.statusBar.feedback.visible": false,
"editor.minimap.enabled": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.formatOnSave": false,
"[javascript]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true
},
"[mdx]": {
"editor.wordWrap": "on"
},
"workbench.startupEditor": "newUntitledFile",
"editor.renderControlCharacters": true,
"workbench.sideBar.location": "left",
"window.zoomLevel": -1,
"workbench.statusBar.visible": true,
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"files.associations": {
"*.md": "mdx"
},
"problems.autoReveal": false,
"github.hosts": [
{
"host": "https://github.com",
"username": "oauth",
"token": "system"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment