Skip to content

Instantly share code, notes, and snippets.

@AlexOros
Last active March 13, 2021 10:20
Show Gist options
  • Save AlexOros/eda24b66af7153989d59253f8b791b9d to your computer and use it in GitHub Desktop.
Save AlexOros/eda24b66af7153989d59253f8b791b9d to your computer and use it in GitHub Desktop.
[ THEME ] Dracula Theme from inteliJ / dracula-color-theme.json
{
"todo-tree.tree.showScanModeButton": false,
"turboConsoleLog.logMessagePrefix": "",
"editor.fontFamily": "Cascadia Code PL",
"editor.fontLigatures": true,
"turboConsoleLog.insertEnclosingFunction": false,
"turboConsoleLog.insertEnclosingClass": false,
"turboConsoleLog.includeFileNameAndLineNum": false,
"cSpell.userWords": [
"TRIAGED",
"mysize",
"prefetch",
"snakeize",
"textsize",
"unfollow"
],
"todo-tree.general.tags": [
"BUG ",
"HACK ",
"FXME ",
"TODO ",
"XXX "
],
"todo-tree.highlights.customHighlight": {
"BUG": {
"icon": "bug"
},
"FIXME ": {
"icon": "flame"
}
},
"material-icon-theme.folders.theme": "classic",
"material-icon-theme.activeIconPack": "react",
"prettier.arrowParens": "avoid",
"workbench.colorCustomizations": {
"activityBarBadge.background": "#da501a",
"list.activeSelectionForeground": "#da501a",
"list.inactiveSelectionForeground": "#da501a",
"list.highlightForeground": "#da501a",
"scrollbarSlider.activeBackground": "#da501a",
"editorSuggestWidget.highlightForeground": "#da501a",
"textLink.foreground": "#da501a",
"progressBar.background": "#da501a",
"pickerGroup.foreground": "#da501a",
"tab.activeBorder": "#da501a",
"notificationLink.foreground": "#da501a",
"editorWidget.resizeBorder": "#da501a",
"editorWidget.border": "#da501a",
"settings.modifiedItemIndicator": "#da501a",
"settings.headerForeground": "#da501a",
"panelTitle.activeBorder": "#da501a",
"breadcrumb.activeSelectionForeground": "#da501a",
"menu.selectionForeground": "#da501a",
"menubar.selectionForeground": "#da501a"
},
"workbench.activityBar.visible": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"workbench.iconTheme": "eq-material-theme-icons-light",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"workbench.colorTheme": "Eva Dark",
//me
"editor.tabSize": 2,
// eslint
"eslint.validate": [
"javascript",
"javascriptreact"
],
"eslint.workingDirectories": [
".",
"./client"
],
// prettier
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"window.zoomLevel": -1,
"editor.codeLensFontFamily": "Cascadia Code PL",
"editor.rulers": [
{
"column": 80,
"color": "#313944"
},
],
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"terminal.integrated.fontSize": 11,
"workbench.editor.pinnedTabSizing": "compact",
"editor.formatOnSaveMode": "modifications",
"editor.formatOnSave": true
//WORK
// "[typescriptreact]": {
// "editor.defaultFormatter": "vscode.typescript-language-features"
// },
// "[javascript]": {
// "editor.defaultFormatter": "vscode.typescript-language-features"
// },
// "prettier.trailingComma": "all",
// "prettier.singleQuote": true,
// "[typescript]": {
// "editor.defaultFormatter": "vscode.typescript-language-features"
// },
// "[json]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "editor.minimap.showSlider": "always",
// "workbench.editor.pinnedTabSizing": "compact",
// "terminal.integrated.fontSize": 12,
// "window.zoomLevel": -1,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment