Created
July 24, 2025 04:09
-
-
Save shamscorner/972be290708d7cdba62d3dcf298a4e70 to your computer and use it in GitHub Desktop.
My VSCode Settings 2025
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
| { | |
| "workbench.editor.showTabs": "single", | |
| "workbench.startupEditor": "none", | |
| "workbench.tips.enabled": false, | |
| "editor.minimap.enabled": false, | |
| "breadcrumbs.enabled": false, | |
| "workbench.sideBar.location": "right", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "material-icon-theme.hidesExplorerArrows": true, | |
| "workbench.tree.enableStickyScroll": false, | |
| "workbench.tree.renderIndentGuides": "none", | |
| "workbench.tree.indent": 8, | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.decorations.badges": false, | |
| "window.zoomLevel": 1.5, | |
| "window.customTitleBarVisibility": "never", | |
| "window.titleBarStyle": "native", | |
| "custom-ui-style.electron": { | |
| "titleBarStyle": "hiddenInset", | |
| "trafficLightPosition": { | |
| "x": 20, | |
| "y": 16 | |
| } | |
| }, | |
| "custom-ui-style.stylesheet": { | |
| ".notification-toast": "box-shadow: none !important", | |
| ".quick-input-widget.show-file-icons": "box-shadow: none !important", | |
| ".quick-input-widget": "top: 25vh !important", | |
| ".quick-input-list .scrollbar": "display: none", | |
| ".monaco-action-bar.quick-input-inline-action-bar": "display: none", | |
| ".editor-widget.find-widget": "box-shadow: none; border-radius: 4px", | |
| ".quick-input-titlebar": "background: #100B15 !important", | |
| ".monaco-workbench .part.editor > .content .editor-group-container > .title.title-border-bottom:after": "display: none", | |
| ".monaco-scrollable-element > .shadow.top": "display: none", | |
| ".sidebar .title-label": "padding: 0 !important", | |
| ".sidebar": "border: none !important", | |
| ".monaco-workbench .monaco-list:not(.element-focused):focus:before": "outline: none !important", | |
| ".monaco-list-row.focused": "outline: none !important", | |
| ".monaco-editor .scroll-decoration": "display: none", | |
| ".title-actions": "display: none !important", | |
| ".title.show-file-icons .label-container .monaco-icon-label.file-icon": "justify-content: center; padding: 0 !important", | |
| ".title .monaco-icon-label:after": "margin-right: 0", | |
| ".monaco-workbench .part.editor > .content .editor-group-container > .title > .label-container > .title-label": "padding-left: 60px", | |
| ".title .monaco-icon-label.file-icon": "margin: 0 60px", | |
| ".monaco-editor .cursors-layer .cursor": "background-image: linear-gradient(135deg, #ffaffc 10%, #DA70D6 100%)" | |
| }, | |
| "custom-ui-style.font.sansSerif": "Fira Code", | |
| "editor.cursorBlinking": "solid", | |
| "workbench.colorCustomizations": { | |
| "editorCursor.background": "#000000", | |
| "editorOverviewRuler.wordHighlightStrongForeground": "#0000", | |
| "editorOverviewRuler.selectionHighlightForeground": "#0000", | |
| "editorOverviewRuler.rangeHighlightForeground": "#0000", | |
| "editorOverviewRuler.wordHighlightForeground": "#0000", | |
| "editorOverviewRuler.bracketMatchForeground": "#0000", | |
| "editorOverviewRuler.findMatchForeground": "#0000", | |
| "editorOverviewRuler.modifiedForeground": "#0000", | |
| "editorOverviewRuler.deletedForeground": "#0000", | |
| "editorOverviewRuler.warningForeground": "#0000", | |
| "editorOverviewRuler.addedForeground": "#0000", | |
| "editorOverviewRuler.errorForeground": "#0000", | |
| "editorOverviewRuler.infoForeground": "#0000", | |
| "editorOverviewRuler.border": "#0000", | |
| "[Aura Dracula Spirit (Soft)]": { | |
| "editorSuggestWidget.selectedBackground": "#3A334B", | |
| "sideBar.background": "#191521" | |
| } | |
| }, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontSize": 12, | |
| "editor.fontLigatures": true, | |
| "editor.lineHeight": 2, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": "comment", | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| } | |
| ] | |
| }, | |
| "editor.colorDecorators": true, | |
| "editor.codeLens": false, | |
| "editor.links": false, | |
| "editor.parameterHints.enabled": false, | |
| "editor.lightbulb.enabled": "off", | |
| "files.trimTrailingWhitespace": true, | |
| "files.insertFinalNewline": true, | |
| "editor.lineNumbers": "relative", | |
| "editor.tabSize": 2, | |
| "editor.detectIndentation": false, | |
| "editor.guides.indentation": false, | |
| "editor.renderWhitespace": "none", | |
| "editor.renderLineHighlight": "none", | |
| "editor.occurrencesHighlight": "off", | |
| "editor.scrollbar.horizontal": "hidden", | |
| "editor.scrollbar.vertical": "hidden", | |
| "editor.overviewRulerBorder": false, | |
| "editor.suggestOnTriggerCharacters": true, | |
| "editor.tabCompletion": "on", | |
| "editor.snippetSuggestions": "top", | |
| "emmet.triggerExpansionOnTab": true, | |
| "update.mode": "none", | |
| "extensions.ignoreRecommendations": true, | |
| "terminal.integrated.fontFamily": "MesloLGS NF", | |
| "terminal.integrated.lineHeight": 1.5, | |
| "terminal.integrated.fontSize": 11, | |
| "terminal.integrated.env.osx": { | |
| "FIG_NEW_SESSION": "1" | |
| }, | |
| "window.commandCenter": false, | |
| "workbench.layoutControl.enabled": false, | |
| "vim.easymotion": true, | |
| "vim.useCtrlKeys": true, | |
| "vim.insertModeKeyBindings": [ | |
| { | |
| "before": ["j", "j"], | |
| "after": ["<Esc>"] | |
| } | |
| ], | |
| "vim.leader": "<space>", | |
| "extensions.experimental.affinity": { | |
| "vscodevim.vim": 1 | |
| }, | |
| "workbench.activityBar.location": "hidden", | |
| "github.copilot.nextEditSuggestions.enabled": true, | |
| "git.enableSmartCommit": true, | |
| "git.confirmSync": false, | |
| "editor.wordWrap": "on", | |
| "editor.formatOnSave": true, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "explorer.confirmPasteNative": false, | |
| "screencastMode.fontSize": 36, | |
| "screencastMode.verticalOffset": 5, | |
| "screencastMode.keyboardOptions": { | |
| "showKeys": false, | |
| "showCommands": false | |
| }, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": false, | |
| "markdown": true, | |
| "scminput": false | |
| }, | |
| "svelte.enable-ts-plugin": true, | |
| "git.openRepositoryInParentFolders": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "biome.suggestInstallingGlobally": false, | |
| "workbench.colorTheme": "Aura Dracula Spirit" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment