Last active
October 2, 2024 15:59
-
-
Save moelzanaty3/9a875688c1b41e93911fbdd0b805b13f to your computer and use it in GitHub Desktop.
my VSCode night owl colorCustomizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"[css]":{ | |
"editor.defaultFormatter":"vscode.css-language-features" | |
}, | |
"[dockerfile]":{ | |
"editor.defaultFormatter":"foxundermoon.shell-format" | |
}, | |
"[html]":{ | |
"editor.defaultFormatter":"vscode.html-language-features" | |
}, | |
"[javascript]":{ | |
"editor.defaultFormatter":"esbenp.prettier-vscode" | |
}, | |
"[json]":{ | |
"editor.defaultFormatter":"vscode.json-language-features" | |
}, | |
"[jsonc]":{ | |
"editor.defaultFormatter":"esbenp.prettier-vscode" | |
}, | |
"[markdown]":{ | |
"editor.defaultFormatter":"DavidAnson.vscode-markdownlint", | |
"editor.formatOnSave":true | |
}, | |
"[mdx]":{ | |
"editor.defaultFormatter":"yzhang.markdown-all-in-one" | |
}, | |
"[prisma]":{ | |
"editor.defaultFormatter":"Prisma.prisma", | |
"editor.formatOnSave":true | |
}, | |
"[xml]":{ | |
"editor.defaultFormatter":"DotJoshJohnson.xml" | |
}, | |
"[yaml]":{ | |
"editor.defaultFormatter":"esbenp.prettier-vscode", | |
"editor.formatOnSave":false | |
}, | |
"cSpell.checkOnlyEnabledFileTypes":false, | |
"cSpell.userWords":[ | |
"agentkeepalive", | |
"Cruella", | |
"dalmation", | |
"Elzanaty", | |
"vfuk" | |
], | |
"editor.accessibilitySupport":"off", | |
"editor.fontFamily":"'SFMono-Regular', 'Dank Mono', 'Operator Mono', 'Fira Code', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize":17, | |
"editor.inlineSuggest.enabled":true, | |
"editor.quickSuggestions":{ | |
"strings":true | |
}, | |
"git.autofetch":true, | |
"github.copilot.enable":{ | |
"*":false, | |
"plaintext":false, | |
"markdown":true, | |
"scminput":false, | |
"yaml":false | |
}, | |
"javascript.updateImportsOnFileMove.enabled":"always", | |
"redhat.telemetry.enabled":true, | |
"terminal.integrated.defaultProfile.osx":"zsh", | |
"terminal.integrated.env.osx":{ | |
"FIG_NEW_SESSION":"1", | |
"Q_NEW_SESSION":"1" | |
}, | |
"terminal.integrated.fontSize":16, | |
"typescript.updateImportsOnFileMove.enabled":"always", | |
"[javascriptreact]":{ | |
"editor.defaultFormatter":"vscode.typescript-language-features" | |
}, | |
"[scss]":{ | |
"editor.defaultFormatter":"vscode.css-language-features", | |
"editor.formatOnSave":false | |
}, | |
"errorLens.enabledDiagnosticLevels":[ | |
"warning", | |
"info", | |
"error" | |
], | |
"errorLens.statusBarIconsEnabled":true, | |
"errorLens.editorHoverPartsEnabled":{ | |
"messageEnabled":true | |
}, | |
"errorLens.statusBarColorsEnabled":true, | |
"errorLens.enabled":true, | |
"vsintellicode.typescript.completionsEnabled":false, | |
"javascript.suggest.includeAutomaticOptionalChainCompletions":false, | |
"javascript.suggest.classMemberSnippets.enabled":false, | |
"typescript.suggest.classMemberSnippets.enabled":false, | |
"typescript.suggest.objectLiteralMethodSnippets.enabled":false, | |
"editor.suggest.showSnippets":false, | |
"[typescriptreact]":{ | |
"editor.defaultFormatter":"esbenp.prettier-vscode" | |
}, | |
"prettier.singleQuote":true, | |
"prettier.semi":false, | |
"prettier.requireConfig":true, | |
"editor.defaultFormatter":"esbenp.prettier-vscode", | |
"[dotenv]":{ | |
"editor.defaultFormatter":"foxundermoon.shell-format" | |
}, | |
"[shellscript]":{ | |
"editor.defaultFormatter":"foxundermoon.shell-format" | |
}, | |
"notebook.formatOnSave.enabled":true, | |
"githubPullRequests.pullBranch":"never", | |
"terminal.integrated.profiles.linux":{ | |
"bash":{ | |
"path":"bash", | |
"icon":"terminal-bash" | |
}, | |
"zsh":{ | |
"path":"zsh" | |
}, | |
"fish":{ | |
"path":"fish" | |
}, | |
"tmux":{ | |
"path":"tmux", | |
"icon":"terminal-tmux" | |
}, | |
"pwsh":{ | |
"path":"pwsh", | |
"icon":"terminal-powershell" | |
} | |
}, | |
"[properties]":{ | |
"editor.defaultFormatter":"foxundermoon.shell-format" | |
}, | |
"window.commandCenter":false, | |
"editor.tabSize":2, | |
"workbench.tree.renderIndentGuides":"always", | |
// "workbench.colorCustomizations":{ | |
// "editor.background":"#000011", | |
// "sideBar.background":"#000011", | |
// "activityBar.background":"#000011", | |
// "statusBar.background":"#000011", | |
// "editorGroupHeader.tabsBackground":"#000011", | |
// "terminal.background":"#000011", | |
// "editorGutter.background":"#000011", | |
// "sideBarSectionHeader.background":"#000011", | |
// "input.background":"#000011", | |
// "welcomePage.background":"#000011", | |
// "quickInput.background":"#000011", | |
// "tab.inactiveBackground":"#000011", | |
// "panel.background":"#000011", | |
// "editorGroup.emptyBackground":"#000011", | |
// "titleBar.activeBackground":"#000011" | |
// }, | |
"window.zoomLevel":0, | |
"workbench.editor.editorActionsLocation":"hidden", | |
"[ignore]":{ | |
"editor.defaultFormatter":"foxundermoon.shell-format" | |
}, | |
"search.exclude":{ | |
"**/node_modules":true, | |
"**/bower_components":true, | |
"**/coverage":true, | |
"**/dist":true, | |
"**/build":true, | |
"**/.build":true, | |
"**/.gh-pages":true | |
}, | |
"workbench.activityBar.location":"top", | |
"typescript.inlayHints.parameterNames.enabled":"all", | |
"typescript.inlayHints.parameterTypes.enabled":true, | |
"typescript.inlayHints.propertyDeclarationTypes.enabled":true, | |
"typescript.inlayHints.variableTypes.enabled":false, | |
"typescript.inlayHints.enumMemberValues.enabled":true, | |
"typescript.inlayHints.functionLikeReturnTypes.enabled":true, | |
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName":true, | |
"typescript.inlayHints.variableTypes.suppressWhenTypeMatchesName":true, | |
"javascript.inlayHints.parameterNames.enabled":"all", | |
"javascript.inlayHints.parameterTypes.enabled":true, | |
"javascript.inlayHints.propertyDeclarationTypes.enabled":true, | |
"javascript.inlayHints.variableTypes.enabled":false, | |
"javascript.inlayHints.enumMemberValues.enabled":true, | |
"javascript.inlayHints.functionLikeReturnTypes.enabled":true, | |
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName":true, | |
"javascript.inlayHints.variableTypes.suppressWhenTypeMatchesName":true, | |
"editor.formatOnSave":false, | |
"github.copilot.editor.enableAutoCompletions":true, | |
"workbench.colorTheme":"GitHub Light", | |
"editor.minimap.enabled":false, | |
"terminal.integrated.allowedLinkSchemes":[ | |
"file", | |
"http", | |
"https", | |
"mailto", | |
"vscode", | |
"vscode-insiders", | |
"docker-desktop" | |
], | |
"git.ignoreRebaseWarning":true, | |
"editor.tokenColorCustomizations":{ | |
"[*Light*]":{ | |
"textMateRules":[ | |
{ | |
"scope":[ | |
"constant", | |
"entity.name.constant", | |
"variable.other.constant", | |
"variable.other.enummember", | |
"variable.language" | |
], | |
"settings":{ | |
"foreground":"#24292E" | |
} | |
}, | |
{ | |
"scope":"entity.name.type", | |
"settings":{ | |
"foreground":"#24292E" | |
} | |
}, | |
{ | |
"scope":"entity.name", | |
"settings":{ | |
"foreground":"#6F42C1" | |
} | |
}, | |
{ | |
"scope":"variable.other", | |
"settings":{ | |
"foreground":"#005CC5" | |
} | |
}, | |
{ | |
"scope":"variable", | |
"settings":{ | |
"foreground":"#47423f" | |
} | |
}, | |
{ | |
"name":"Tag attribute", | |
"scope":"entity.other.attribute-name", | |
"settings":{ | |
"foreground":"#316BCD" | |
} | |
}, | |
{ | |
"name":"HTML Tag names", | |
"scope":[ | |
"entity.name.tag", | |
"meta.tag.other.html", | |
"meta.tag.other.js", | |
"meta.tag.other.tsx", | |
"entity.name.tag.tsx", | |
"entity.name.tag.js", | |
"entity.name.tag", | |
"meta.tag.js", | |
"meta.tag.tsx", | |
"meta.tag.html" | |
], | |
"settings":{ | |
"foreground":"#316BCD", | |
"fontStyle":"" | |
} | |
}, | |
{ | |
"name":"TypeScript[React] Variables and Object Properties", | |
"scope":[ | |
"variable.other.readwrite.alias.ts", | |
"variable.other.readwrite.alias.tsx", | |
"variable.other.readwrite.ts", | |
"variable.other.readwrite.tsx", | |
"variable.other.object.ts", | |
"variable.other.object.tsx", | |
"variable.object.property.ts", | |
"variable.object.property.tsx", | |
"variable.other.ts", | |
"variable.other.tsx", | |
"variable.tsx", | |
"variable.ts" | |
], | |
"settings":{ | |
"foreground":"#24292E" | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated one