Skip to content

Instantly share code, notes, and snippets.

@embarq
Created August 30, 2019 10:55
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 embarq/704a03a8d297289a729bfe82b2f501ea to your computer and use it in GitHub Desktop.
Save embarq/704a03a8d297289a729bfe82b2f501ea to your computer and use it in GitHub Desktop.
VSCode settings
{
"diffEditor.ignoreTrimWhitespace": true,
"editor.cursorBlinking": "phase",
"editor.cursorStyle": "line",
"editor.dragAndDrop": false,
"editor.fontFamily": "Menlo, monospace",
"editor.formatOnPaste": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderControlCharacters": true,
"editor.snippetSuggestions": "top",
"editor.wordWrap": "on",
"explorer.confirmDragAndDrop": false,
"files.defaultLanguage": "markdown",
"git.decorations.enabled": true,
"git.enableSmartCommit": true,
"html.format.enable": true,
"search.useIgnoreFiles": true,
"sync.askGistName": false,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"sync.gist": "962cc872868cfb0e3a9464081e2c6eee",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"terminal.integrated.fontSize": 15,
"tslint.enable": false,
"typescript.check.npmIsInstalled": false,
"window.title": "${activeEditorShort}${separator}${rootName}${dirty}",
"window.zoomLevel": 0,
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.feedback.visible": false,
"workbench.colorCustomizations": {
// "editor.background": "#1c1e21",
// "editor.foreground": "#fefefefe",
"breadcrumb.foreground": "#66D9EF",
"breadcrumb.activeSelectionForeground": "#fefefe",
"terminal.background": "#131313",
"terminal.ansiGreen": "#a6e22eff",
"terminal.ansiBrightGreen": "#a6e22eff",
"terminal.ansiWhite": "#fcfcfc",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.foreground": "#fefefe"
},
"editor.tokenColorCustomizations": {
"[Monokai Flatland Ace]": {
"textMateRules": [
{
"scope": ["punctuation.definition.template-expression.begin.ts", "punctuation.definition.template-expression.end.ts"],
"settings": {
"foreground": "#F92672"
}
},
{
"scope": [
"variable.other.readwrite.ts",
"meta.embedded.line.ts",
"meta.template.expression.ts"
],
"settings": {
"foreground": "#fefefe"
}
}
]
}
},
"prettier.singleQuote": true,
"prettier.tslintIntegration": true,
"diffEditor.renderSideBySide": true,
"terminal.integrated.cursorStyle": "line",
"editor.tabSize": 2,
"editor.renderLineHighlight": "all",
"editor.cursorSmoothCaretAnimation": true,
"files.trimTrailingWhitespace": false,
"breadcrumbs.enabled": true,
"editor.lineHeight": 0,
"editor.fontSize": 17,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.find.addExtraSpaceOnTop": false,
"markdown.preview.fontSize": 16,
"markdown.preview.fontFamily": "'Menlo', -apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', 'Ubuntu', 'Droid Sans', sans-serif",
"debug.console.fontFamily": "Menlo, default",
"terminal.integrated.fontFamily": "Menlo, 'Courier New', Menlo",
"markdown.preview.lineHeight": 1.5,
"breadcrumbs.symbolPath": "last",
"terminal.integrated.shellArgs.osx": [
"-l"
],
"workbench.colorTheme": "Monokai Flatland Ace"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment