Skip to content

Instantly share code, notes, and snippets.

@donaldG21
Created March 28, 2023 18:08
Show Gist options
  • Save donaldG21/09695804ca3a27d4f1676f640c2abb93 to your computer and use it in GitHub Desktop.
Save donaldG21/09695804ca3a27d4f1676f640c2abb93 to your computer and use it in GitHub Desktop.
My VSCode workspace settings
{
"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.inlineSuggest.enabled": true,
"editor.tabSize": 2,
"editor.tokenColorCustomizations": {
"comments": "#c1fdd031",
"textMateRules": [
{
"name": "import modules",
"scope": [
"variable.other.readwrite.alias.tsx",
"meta.block.tsx",
"meta.import.tsx",
"source.tsx"
],
"settings": {
"foreground": "#ecfbff"
}
},
{
"name": "import module paths",
"scope": [
"string.quoted.double.tsx",
"meta.tag.attributes.tsx",
"meta.tag.tsx",
"string.quoted.double.ts",
"meta.jsx.children.tsx",
"meta.tag.without-attributes.tsx",
"meta.block.tsx",
"meta.arrow.tsx",
"meta.var.expr.tsx",
"source.tsx",
"meta.import.tsx",
"string.quoted.single.tsx",
"source.tsx"
],
"settings": {
"foreground": "#fffd78f3"
}
},
{
"name": "class keyword",
"scope": ["storage.type.class", "storage.type.interface"],
"settings": {
"foreground": "#FC618D"
}
},
{
"name": "html tags",
"scope": "entity.name.tag",
"settings": {
"foreground": "#0ca1ecd7"
}
},
{
"name": "component tags",
"scope": [
"entity.name.tag.js.jsx support.class.component.js.jsx",
"entity.name.tag support.class.component",
"support.class.component"
],
"settings": {
"foreground": "#32f87ea8"
}
}
]
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"quokka.suppressExpirationNotifications": true,
"settingsSync.ignoredExtensions": ["monokai.theme-monokai-pro-vscode"],
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"terminal.integrated.fontSize": 13,
"terminal.integrated.scrollback": 1000000,
"todohighlight.isEnable": true,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#38aff4",
"editor.background": "#1c1b1b",
"editor.foreground": "#80CBC4",
"editor.lineHighlightBackground": "#1d1c1c",
"editor.lineHighlightBorder": "#b7b7b716",
"editor.selectionBackground": "#3278cd83",
"editor.selectionHighlightBackground": "#cdcb5e9f",
// "editorError.border": "",
// "editorError.foreground": "",
"editorGroupHeader.tabsBackground": "#1c1b1b",
"editorGutter.background": "#1d1c1c",
// "editorOverviewRuler.deletedForeground": "",
// "editorOverviewRuler.errorForeground": "",
// "errorForeground": "",
"list.activeSelectionForeground": "#82c0ec",
"list.inactiveSelectionForeground": "#8cc5eb",
"panel.background": "#1a1a1a",
"peekViewEditorGutter.background": "#212424e4",
"peekViewEditor.background": "#1d2a312d",
"peekViewResult.background": "#1e2121",
"tab.activeBorder": "#bec8d0",
"tab.activeForeground": "#eff6fb",
"tab.border": "#1c1b1b",
"tab.inactiveBackground": "#1c1b1b",
"terminal.ansiBrightRed": "#fa2112",
"terminal.ansiRed": "#fb5858",
"terminal.background": "#1a1a1a"
},
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"workbench.editorAssociations": {
"*.xlsx": "default"
},
"workbench.iconTheme": "vscode-icons",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false
}
}
@donaldG21
Copy link
Author

Screenshot of my VSCode workspace:
Screenshot 2023-03-28 at 2 10 44 PM

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