Last active
August 28, 2024 16:15
-
-
Save musaid/bb9e309f72ae65e287a557d3470c65ed to your computer and use it in GitHub Desktop.
VSCode Settings Aug 2024
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
{ | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"workbench.editor.enablePreview": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "top", | |
"editor.detectIndentation": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "on", | |
"editor.guides.indentation": false, | |
// Silence the Noise | |
"breadcrumbs.enabled": false, | |
"scm.diffDecorations": "gutter", | |
"editor.hover.delay": 500, | |
"editor.hover.enabled": true, | |
"editor.matchBrackets": "never", | |
"workbench.tips.enabled": false, | |
"editor.colorDecorators": false, | |
"git.decorations.enabled": true, | |
"editor.lightbulb.enabled": "off", | |
"editor.selectionHighlight": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.occurrencesHighlight": "off", | |
"problems.decorations.enabled": true, | |
"editor.renderControlCharacters": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
// Typography | |
"editor.fontFamily": "Operator Mono Lig", | |
"editor.suggestFontSize": 16, | |
"editor.suggestLineHeight": 30, | |
"terminal.integrated.lineHeight": 1.5, | |
"terminal.integrated.fontSize": 16, | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
"**/vendor/{[^l],?[^ai]}*": true, | |
"**/public/{[^i],?[^n]}*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/_ide_helper.php": true, | |
"**/composer.lock": true, | |
"**/package-lock.json": true, | |
"storage": true | |
}, | |
// Code | |
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
"emmet.includeLanguages": { | |
"react": "html", | |
"javascript": "html" | |
}, | |
// Prettier | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[tailwindcss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features", | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"prettier.requireConfig": true, | |
"prettier.useEditorConfig": false, | |
"prettier.tabWidth": 2, | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"explorer.sortOrder": "type", | |
"workbench.tree.indent": 15, | |
"editor.wordWrapColumn": 120, | |
"files.autoSave": "onWindowChange", | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.linkedEditing": true, | |
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'", | |
"diffEditor.wordWrap": "on", | |
"notebook.output.wordWrap": true, | |
"editor.fontSize": 16, | |
"editor.minimap.maxColumn": 250, | |
"codesnap.containerPadding": "8em", | |
"codesnap.boxShadow": "rgba(0, 0, 0, 0.55) 0px 12px 24px", | |
"explorer.confirmDelete": false, | |
"editor.accessibilitySupport": "off", | |
"chat.editor.wordWrap": "on", | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.fontWeight": "400", | |
"workbench.activityBar.location": "hidden", | |
"workbench.statusBar.visible": false, | |
"editor.inlineSuggest.suppressSuggestions": true, | |
"codesnap.backgroundColor": "#FFC540", | |
"codesnap.showLineNumbers": false, | |
"codesnap.roundedCorners": true, | |
"editor.padding.top": 16, | |
"editor.cursorBlinking": "solid", | |
"editor.stickyScroll.enabled": false, | |
"editor.lineHeight": 32, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "italic font", | |
"scope": [ | |
"comment", | |
"keyword", | |
"storage", | |
"keyword.control", | |
"keyword.control.from", | |
"keyword.control.flow", | |
"keyword.control.import", | |
"keyword.control.export", | |
"keyword.control.default", | |
"keyword.control.trycatch", | |
"keyword.control.conditional", | |
"keyword.operator.new", | |
"storage.type", | |
"storage.type.class", | |
"storage.type.function", | |
"storage.modifier.tsx", | |
"storage.modifier.async", | |
"string.quoted.single", | |
"string.quoted.double", | |
"string.interpolated", | |
"string.regexp", | |
"variable.language", | |
"variable.language.this", | |
"variable.language.super", | |
"variable.parameter", | |
"meta.class", | |
"constant.language", | |
"support.type.primitive", | |
"entity.name", | |
"entity.other.attribute-name", | |
"punctuation.definition.comment", | |
"text.html.basic entity.other.attribute-name", | |
"tag.decorator.js entity.name.tag.js", | |
"tag.decorator.js punctuation.definition.tag.js", | |
"source.js constant.other.object.key.js string.unquoted.label.js" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"entity.name.function" | |
], | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": [ | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal", | |
"constant.numeric.json", | |
"entity.name.type.class", | |
"meta.var.expr", | |
"entity.name.other" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"material-icon-theme.saturation": 0, | |
"workbench.colorTheme": "Pitch Black", | |
"material-icon-theme.files.color": "#42a5f5", | |
"workbench.tree.enableStickyScroll": false, | |
"workbench.editor.showTabs": "multiple", | |
"editor.tabSize": 2, | |
"workbench.sideBar.location": "right", | |
"editor.codeLensFontFamily": "Operator Mono Lig", | |
"apc.parts.font.family": { | |
"sidebar": "Operator Mono Lig", | |
"titlebar": "Operator Mono Lig", | |
"activityBar": "Operator Mono Lig", | |
"panel": "Operator Mono Lig", | |
"tabs": "Operator Mono Lig", | |
"statusbar": "Operator Mono Lig", | |
"settings-body": "Operator Mono Lig", | |
"extension-editor": "Operator Mono Lig", | |
"monaco-menu": "Operator Mono Lig" | |
}, | |
"apc.electron": { | |
"frame": false, | |
"titleBarStyle": "hiddenInset" | |
}, | |
"apc.stylesheet": { | |
".mtk3": "font-family: 'Operator Mono Lig', monospace !important; color: #d4d4d4 !important;", | |
".line-numbers": "position: relative !important; width: 35px !important; font-size: 16px !important; font-family: 'Operator Mono Lig' !important; opacity: 0.3;", | |
".current-line ~ .line-numbers": "opacity: 1 !important; color: rgba(212, 212, 212, 0.75) !important; font-weight: bold;", | |
".monaco-editor .scroll-decoration": "box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75) !important; top: -6px !important;", | |
".monaco-workbench .part.editor > .content .editor-group-container > .title .editor-actions": "display: none !important;", | |
".part.sidebar": "box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);", | |
".monaco-list.list_id_1 .monaco-list-row.selected": "background-color: #007acc !important; opacity: 1 !important; border-top: 1px #007acc solid; border-bottom: 1px #007acc solid;", | |
".monaco-list.list_id_1 .monaco-list-row.selected .label-name": "color: #fff !important; opacity: 1 !important;", | |
".monaco-workbench .part.sidebar .title-actions .actions-container": "display: none;", | |
".monaco-tree .monaco-tree-row .label-name, .monaco-list .monaco-list-row .monaco-icon-label .label-name": "font-family: 'Operator Mono Lig', monospace !important; font-size: 14px !important; font-weight: 400 !important; color: #d4d4d4 !important;", | |
".monaco-scrollable-element > .shadow.top": "box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.75) !important; top: -3px !important;", | |
".composite.title": "display: flex !important; flex-direction: row !important; align-items: center !important; justify-items: center !important;", | |
".composite.title h2": "font-weight: bold !important; font-size: 12px !important; text-transform: uppercase; color: #d4d4d4 !important;", | |
".composite.title h2::before": "display: inline-block; margin-right: 6px; font-size: 1.1rem; content: '🚀';", | |
".slider": "position: absolute !important; right: 1px !important; width: 1px !important; background: #fff2 !important; left: auto !important;", | |
".codicon-toolbar-more, .codicon-word-wrap": "display: block !important;", | |
".monaco-editor-hover, .monaco-hover": "box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1) !important; padding: 10px !important; background-image: linear-gradient(#000 0%, #000 100%) !important; backdrop-filter: blur(3px) !important; border-radius: 20px !important; border: 1px solid rgba(255, 255, 255, 0.25) !important;", | |
".monaco-workbench .part.titlebar > .titlebar-container > .titlebar-center > .window-title > .command-center .action-item.command-center-center": "border: none !important; background: transparent !important;", | |
".titlebar-left": "justify-content: flex-start !important; flex-grow: 0 !important; width: auto !important;", | |
".search-label": "font-family: 'Operator Mono Lig' !important; font-size: 14px !important; color: #d4d4d4; display: block;", | |
".search-icon": "display: none !important;", | |
".codicon-search::before": "display: none !important;", | |
".codicon-arrow-right, .codicon-arrow-left": "display: none !important;", | |
".titlebar-right > *": "display: none !important;", | |
".quick-input-widget": "transform: translateY(-50%) !important; top: 50% !important; padding: 10px 10px 18px 10px !important; background-image: linear-gradient(#000 0%, #000 100%) !important; backdrop-filter: blur(3px) !important; border-radius: 20px !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1) !important;", | |
".monaco-list-rows": "background: transparent !important;", | |
".monaco-list-row:hover": "background: rgba(0, 0, 0, 0.2) !important;", | |
".notifications-toasts .monaco-list-row:hover": "background: none !important;", | |
".quick-input-filter .monaco-inputbox": "border-radius: 12px !important; padding: 8px !important; border: none !important; background-color: rgba(34, 34, 34, 0.4) !important; font-family: 'Operator Mono Lig' !important; font-size: 14px !important; margin-bottom: 16px !important;", | |
"#command-blur": "position: absolute; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.15); top: 0; left: 0; backdrop-filter: blur(8px);", | |
".monaco-inputbox input::placeholder": "color: rgba(255, 255, 255, 0.3) !important;", | |
".monaco-inputbox.synthetic-focus": "outline: none !important; border-color: rgba(255, 255, 255, 0.5) !important;", | |
// "input:focus, textarea:focus, select:focus, .monaco-inputbox.focused": "outline: none !important; border-color: rgba(255, 255, 255, 0.5) !important; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) !important;", | |
".editor-group-watermark": "max-width: none !important;", | |
".command-center-center": "width: auto !important;", | |
".letterpress": "background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 400'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0h400v400H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23000000' d='M298.783 0H101.217C45.317 0 0 45.317 0 101.217v197.566C0 354.683 45.316 400 101.217 400h197.566C354.683 400 400 354.683 400 298.783V101.217C400 45.317 354.683 0 298.783 0z'/%3E%3Cpath fill='%23000000' d='M304.035 89.598c-68.951 0-94.382 49.158-114.885 88.663l-13.486 25.248c-21.74 41.899-37.964 67.35-79.781 67.35a19.756 19.756 0 0 0-13.995 5.784 19.769 19.769 0 0 0-4.291 21.56 19.758 19.758 0 0 0 10.713 10.702 19.756 19.756 0 0 0 7.573 1.499c68.951 0 94.382-49.158 114.885-88.663l13.405-25.248c21.74-41.899 37.964-67.35 79.781-67.35a19.763 19.763 0 0 0 18.286-12.201 19.77 19.77 0 0 0-4.291-21.56 19.763 19.763 0 0 0-13.995-5.784z'/%3E%3C/g%3E%3C/svg%3E\") !important; background-repeat: no-repeat no-repeat !important; background-position: center center !important; background-size: contain !important; width: 30% !important;", | |
".monaco-list-row .monaco-icon-label.explorer-item.monaco-decoration-itemColor-kkyaq5 .label-name": "color: #61DAFB !important;", | |
".monaco-list-row .monaco-icon-label.explorer-item.monaco-decoration-itemColor--ec98p9 .label-name": "color: #FFC540 !important;", | |
".monaco-list-row .monaco-icon-label.explorer-item.monaco-decoration-itemColor-conflict .label-name": "color: #FF6B6B !important;", | |
".dirty-diff-glyph": "left: 0px !important;", | |
".editor-widget.find-widget": "background-color: #000 !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; border-top: none !important; border-radius: 0 0 15px 15px !important;", | |
".editor-widget.find-widget .monaco-findInput, .editor-widget.find-widget .monaco-inputbox": "background-color: #000 !important; border: none !important;", | |
".editor-widget.find-widget .button": "background-color: transparent !important; border: none !important; color: rgba(255, 255, 255, 0.7) !important;", | |
".editor-widget.find-widget .button:hover": "color: rgba(255, 255, 255, 1) !important;", | |
".editor-widget.find-widget .monaco-custom-toggle": "background-color: transparent !important; border: none !important; color: rgba(255, 255, 255, 0.7) !important;", | |
".editor-widget.find-widget .monaco-custom-toggle:hover": "color: rgba(255, 255, 255, 1) !important;", | |
".editor-widget.find-widget .monaco-findInput .input, .editor-widget.find-widget .monaco-inputbox .input": "border: none !important; background-color: transparent !important; color: #d4d4d4 !important;", | |
".editor-widget.find-widget .monaco-findInput.synthetic-focus, .editor-widget.find-widget .monaco-inputbox.synthetic-focus": "outline: none !important; border: 1px solid rgba(255, 255, 255, 0.5) !important; border-radius: 4px !important; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) !important;", | |
}, | |
"apc.imports": [ | |
"/Users/musaid/work/own/vscode-cursor-trail-effect.js" | |
], | |
"window.customTitleBarVisibility": "never", | |
"window.titleBarStyle": "native", | |
"workbench.activityBar.orientation": "vertical" | |
} |
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
{ | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"workbench.editor.enablePreview": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "top", | |
"editor.detectIndentation": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "on", | |
"editor.guides.indentation": false, | |
// Silence the Noise | |
"breadcrumbs.enabled": false, | |
"scm.diffDecorations": "gutter", | |
"editor.hover.delay": 500, | |
"editor.hover.enabled": true, | |
"editor.matchBrackets": "never", | |
"workbench.tips.enabled": false, | |
"editor.colorDecorators": false, | |
"git.decorations.enabled": true, | |
"workbench.startupEditor": "none", | |
"editor.lightbulb.enabled": "off", | |
"editor.selectionHighlight": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.occurrencesHighlight": "off", | |
"problems.decorations.enabled": true, | |
"editor.renderControlCharacters": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
// Typography | |
"editor.fontFamily": "Operator Mono Lig", | |
"editor.suggestFontSize": 16, | |
"editor.suggestLineHeight": 30, | |
"terminal.integrated.lineHeight": 1.5, | |
"terminal.integrated.fontSize": 16, | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
"**/vendor/{[^l],?[^ai]}*": true, | |
"**/public/{[^i],?[^n]}*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/_ide_helper.php": true, | |
"**/composer.lock": true, | |
"**/package-lock.json": true, | |
"storage": true | |
}, | |
// Code | |
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
"emmet.includeLanguages": { | |
"react": "html", | |
"javascript": "html" | |
}, | |
// Prettier | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[tailwindcss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features", | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"prettier.requireConfig": true, | |
"prettier.useEditorConfig": false, | |
"prettier.tabWidth": 2, | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"explorer.sortOrder": "type", | |
"workbench.tree.indent": 15, | |
"editor.wordWrapColumn": 120, | |
"files.autoSave": "onWindowChange", | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.linkedEditing": true, | |
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'", | |
"diffEditor.wordWrap": "on", | |
"notebook.output.wordWrap": true, | |
"editor.fontSize": 16, | |
"editor.minimap.maxColumn": 250, | |
"codesnap.containerPadding": "8em", | |
"codesnap.boxShadow": "rgba(0, 0, 0, 0.55) 0px 12px 24px", | |
"explorer.confirmDelete": false, | |
"editor.accessibilitySupport": "off", | |
"chat.editor.wordWrap": "on", | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.fontWeight": "400", | |
"workbench.activityBar.location": "hidden", | |
"workbench.statusBar.visible": false, | |
"editor.inlineSuggest.suppressSuggestions": true, | |
"codesnap.backgroundColor": "#FFC540", | |
"codesnap.showLineNumbers": false, | |
"codesnap.roundedCorners": true, | |
"editor.padding.top": 16, | |
"editor.cursorBlinking": "solid", | |
"editor.stickyScroll.enabled": false, | |
"editor.lineHeight": 32, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "italic font", | |
"scope": [ | |
"comment", | |
"keyword", | |
"storage", | |
"keyword.control", | |
"keyword.control.from", | |
"keyword.control.flow", | |
"keyword.control.import", | |
"keyword.control.export", | |
"keyword.control.default", | |
"keyword.control.trycatch", | |
"keyword.control.conditional", | |
"keyword.operator.new", | |
"storage.type", | |
"storage.type.class", | |
"storage.type.function", | |
"storage.modifier.tsx", | |
"storage.modifier.async", | |
"string.quoted.single", | |
"string.quoted.double", | |
"string.interpolated", | |
"string.regexp", | |
"variable.language", | |
"variable.language.this", | |
"variable.language.super", | |
"variable.parameter", | |
"meta.class", | |
"constant.language", | |
"support.type.primitive", | |
"entity.name", | |
"entity.other.attribute-name", | |
"punctuation.definition.comment", | |
"text.html.basic entity.other.attribute-name", | |
"tag.decorator.js entity.name.tag.js", | |
"tag.decorator.js punctuation.definition.tag.js", | |
"source.js constant.other.object.key.js string.unquoted.label.js" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"entity.name.function" | |
], | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": [ | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal", | |
"constant.numeric.json", | |
"entity.name.type.class", | |
"meta.var.expr", | |
"entity.name.other" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"material-icon-theme.saturation": 0, | |
"workbench.colorTheme": "React Theme", | |
"material-icon-theme.files.color": "#42a5f5", | |
"workbench.tree.enableStickyScroll": false, | |
"workbench.editor.showTabs": "multiple", | |
"editor.tabSize": 2, | |
"workbench.sideBar.location": "right", | |
"editor.codeLensFontFamily": "Operator Mono Lig", | |
"apc.parts.font.family": { | |
"sidebar": "Operator Mono Lig", | |
"titlebar": "Operator Mono Lig", | |
"activityBar": "Operator Mono Lig", | |
"panel": "Operator Mono Lig", | |
"tabs": "Operator Mono Lig", | |
"statusbar": "Operator Mono Lig", | |
"settings-body": "Operator Mono Lig", | |
"extension-editor": "Operator Mono Lig", | |
"monaco-menu": "Operator Mono Lig" | |
}, | |
"apc.electron": { | |
"frame": false, | |
"titleBarStyle": "hiddenInset" | |
}, | |
"apc.stylesheet": { | |
".mtk3": "font-family: 'Operator Mono Lig', monospace !important; color: #008c7d !important;", | |
".line-numbers": "position: relative !important; width: 35px !important; font-size: 16px !important; font-family: 'Operator Mono Lig' !important; opacity: 0.3;", | |
".current-line ~ .line-numbers": "opacity: 1 !important; color: rgba(256, 256, 256, 0.75) !important; font-weight: bold;", | |
".monaco-editor .scroll-decoration": "box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75) !important; top: -6px !important;", | |
".monaco-workbench .part.editor > .content .editor-group-container > .title .editor-actions": "display: none !important;", | |
".part.sidebar": "box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);", | |
".monaco-list.list_id_1 .monaco-list-row.selected": "background-color: #4f5971 !important; opacity: 1 !important; border-top: 1px #727b90 solid; border-bottom: 1px #727b90 solid;", | |
".monaco-list.list_id_1 .monaco-list-row.selected .label-name": "color: #fff !important; opacity: 1 !important;", | |
".monaco-workbench .part.sidebar .title-actions .actions-container": "display: none;", | |
".monaco-tree .monaco-tree-row .label-name, .monaco-list .monaco-list-row .monaco-icon-label .label-name": "font-family: 'Operator Mono Lig', monospace !important; font-size: 14px !important; font-weight: 400 !important; color: #fff !important;", | |
".monaco-scrollable-element > .shadow.top": "box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.75) !important; top: -3px !important;", | |
".composite.title": "display: flex !important; flex-direction: row !important; align-items: center !important; justify-items: center !important;", | |
".composite.title h2": "font-weight: bold !important; font-size: 12px !important; text-transform: uppercase; color: #bc9abc !important;", | |
".composite.title h2::before": "display: inline-block; margin-right: 6px; font-size: 1.1rem; content: '🚀';", | |
".slider": "position: absolute !important; right: 1px !important; width: 1px !important; background: #bc9abc !important; left: auto !important;", | |
".codicon-toolbar-more, .codicon-word-wrap": "display: block !important;", | |
".monaco-editor-hover, .monaco-hover": "box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.45) !important; padding: 10px !important; background-image: linear-gradient(#3c3c50 0%, #2a2b38 100%) !important; backdrop-filter: blur(3px) !important; border-radius: 20px !important; border: none !important;", | |
".monaco-workbench .part.titlebar > .titlebar-container > .titlebar-center > .window-title > .command-center .action-item.command-center-center": "border: none !important; background: transparent !important;", | |
".titlebar-left": "justify-content: flex-start !important; flex-grow: 0 !important; width: auto !important;", | |
".search-label": "font-family: 'Operator Mono Lig' !important; font-size: 14px !important; color: #fff; display: block;", | |
".search-icon": "display: none !important;", | |
".codicon-search::before": "display: none !important;", | |
".codicon-arrow-right, .codicon-arrow-left": "display: none !important;", | |
".titlebar-right > *": "display: none !important;", | |
".quick-input-widget": "transform: translateY(-50%) !important; top: 50% !important; box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.45) !important; padding: 10px 10px 18px 10px !important; background-image: linear-gradient(#3c3c50 0%, #2a2b38 100%) !important; backdrop-filter: blur(3px) !important; border-radius: 20px !important;", | |
".monaco-list-rows": "background: transparent !important;", | |
".monaco-list-row:hover": "background: rgba(0, 0, 0, 0.2) !important;", | |
".notifications-toasts .monaco-list-row:hover": "background: none !important;", | |
".quick-input-filter .monaco-inputbox": "border-radius: 12px !important; padding: 8px !important; border: none !important; background-color: rgba(34, 34, 34, 0.4) !important; font-family: 'Operator Mono Lig' !important; font-size: 14px !important; margin-bottom: 16px !important;", | |
"#command-blur": "position: absolute; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.15); top: 0; left: 0; backdrop-filter: blur(8px);", | |
".monaco-inputbox input::placeholder": "color: rgba(255, 255, 255, 0.3) !important;", | |
".editor-group-watermark": "max-width: none !important;", | |
".command-center-center": "width: auto !important;", | |
".letterpress": "background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 400 400'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0h400v400H0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%231e2228' d='M298.783 0H101.217C45.317 0 0 45.317 0 101.217v197.566C0 354.683 45.316 400 101.217 400h197.566C354.683 400 400 354.683 400 298.783V101.217C400 45.317 354.683 0 298.783 0z'/%3E%3Cpath fill='%23282C34' d='M304.035 89.598c-68.951 0-94.382 49.158-114.885 88.663l-13.486 25.248c-21.74 41.899-37.964 67.35-79.781 67.35a19.756 19.756 0 0 0-13.995 5.784 19.769 19.769 0 0 0-4.291 21.56 19.758 19.758 0 0 0 10.713 10.702 19.756 19.756 0 0 0 7.573 1.499c68.951 0 94.382-49.158 114.885-88.663l13.405-25.248c21.74-41.899 37.964-67.35 79.781-67.35a19.763 19.763 0 0 0 18.286-12.201 19.77 19.77 0 0 0-4.291-21.56 19.763 19.763 0 0 0-13.995-5.784z'/%3E%3C/g%3E%3C/svg%3E\") !important; background-repeat: no-repeat no-repeat !important; background-position: center center !important; background-size: contain !important; width: 30% !important;", | |
".monaco-list-row .monaco-icon-label.explorer-item.monaco-decoration-itemColor-kkyaq5 .label-name": "color: #61DAFB !important;", | |
".monaco-list-row .monaco-icon-label.explorer-item.monaco-decoration-itemColor--ec98p9 .label-name": "color: #FFC540 !important;", | |
".monaco-list-row .monaco-icon-label.explorer-item.monaco-decoration-itemColor-conflict .label-name": "color: #FF6B6B !important;", | |
".dirty-diff-glyph": "left: 0px !important;", | |
".editor-widget.find-widget": "background-image: linear-gradient(#3c3c50 0%, #2a2b38 100%) !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; border-top: none !important; border-radius: 0 0 15px 15px !important; box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.45) !important; font-family: 'Operator Mono Lig', monospace !important; font-size: 12px !important; height: 40px !important; padding-top: 4px !important;", | |
".editor-widget.find-widget .monaco-findInput, .editor-widget.find-widget .monaco-inputbox": "background-color: rgba(34, 34, 34, 0.4) !important; border: none !important; border-radius: 6px !important;", | |
".editor-widget.find-widget .button": "background-color: transparent !important; border: none !important; color: rgba(255, 255, 255, 0.7) !important;", | |
".editor-widget.find-widget .button.codicon.codicon-widget-close": "margin-top: 4px !important; cursor: pointer !important;", | |
".editor-widget.find-widget .button:hover": "color: #fff !important;", | |
".editor-widget.find-widget .monaco-custom-toggle": "background-color: transparent !important; border: none !important; color: rgba(255, 255, 255, 0.7) !important;", | |
".editor-widget.find-widget .monaco-custom-toggle:hover": "color: #fff !important;", | |
".editor-widget.find-widget .monaco-findInput .input, .editor-widget.find-widget .monaco-inputbox .input": "border: none !important; background-color: transparent !important; color: #fff !important; font-family: 'Operator Mono Lig', monospace !important; font-size: 12px !important;", | |
".editor-widget.find-widget .monaco-findInput.synthetic-focus, .editor-widget.find-widget .monaco-inputbox.synthetic-focus": "outline: none !important; border-radius: 8px !important;", | |
}, | |
"apc.imports": [ | |
"/Users/musaid/work/own/vscode-cursor-trail-effect.js" | |
], | |
"window.customTitleBarVisibility": "never", | |
"window.titleBarStyle": "native", | |
"workbench.activityBar.orientation": "vertical", | |
"workbench.iconTheme": "material-icon-theme" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment