Skip to content

Instantly share code, notes, and snippets.

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 brandonsueur/a6f3c5255344eb84ba56e3d703d55970 to your computer and use it in GitHub Desktop.
Save brandonsueur/a6f3c5255344eb84ba56e3d703d55970 to your computer and use it in GitHub Desktop.
config vscode
{
// editor
// "editor.fontFamily": "'Monaco', 'monospace', 'Courier New', 'Monaco', 'Droid Sans Mono', 'Fira Code', 'Courier New', monospace, 'Droid Sans Fallback'",
// "editor.fontFamily": "'Consolas', 'Fira Code', 'Dank Mono', Operator Mono,monospace, 'Courier New', 'Droid Sans Mono', 'Fira Code', 'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontFamily": "Dank Mono, SF Mono, Cascadia, Fira Code, Operator Mono, Cascadia, Operator Mono, Monaco, Dank Mono",
"editor.fontLigatures": true,
"editor.fontWeight": "600",
"editor.fontSize": 16,
"editor.glyphMargin": false,
"breadcrumbs.enabled": false,
"editor.hideCursorInOverviewRuler": true,
// "editor.folding": false,
// "editor.lineHeight": 0,
"editor.lineHeight": 35,
// "editor.lineNumbers": "off",
"editor.matchBrackets": "always",
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": false,
"editor.overviewRulerBorder": false,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"prettier.printWidth": 80,
"window.zoomLevel": 0,
"workbench.activityBar.visible": true,
"workbench.iconTheme": "Monokai Pro (Filter Ristretto) Icons",
"workbench.statusBar.visible": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
// search
"terminal.integrated.fontFamily": "Dank Mono",
"search.exclude": {
"**/node_modules": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"files.associations": {
"*.js": "javascriptreact"
},
"editor.formatOnSave": true,
"vetur.validation.template": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"fontshortcuts.defaultFontSize": 15,
"fontshortcuts.defaultTerminalFontSize": 15,
"git.decorations.enabled": false,
"terminal.integrated.fontSize": 14,
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.showIcons": false,
"editor.renderWhitespace": "all",
"window.title": "${activeEditorLong} ${separator} ${activeEditorShort}",
"workbench.colorTheme": "Cobalt2",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "One Dark italic",
"scope": [
"comment",
"entity.other.attribute-name",
"keyword",
"markup.underline.link",
"storage.modifier",
"storage.type",
"string.url",
"variable.language.super",
"variable.language.this"
],
"settings": {
"fontStyle": "italic"
}
},
{
"name": "One Dark italic reset",
"scope": [
"keyword.operator",
"keyword.other.type",
"storage.modifier.import",
"storage.modifier.package",
"storage.type.built-in",
"storage.type.function.arrow",
"storage.type.generic",
"storage.type.java",
"storage.type.primitive"
],
"settings": {
"fontStyle": ""
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment