Created
April 1, 2024 20:34
-
-
Save byigitt/a93f25858491d98fce0d15141d020d1a to your computer and use it in GitHub Desktop.
my vscode settings
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
| { | |
| // Open json editor for settings | |
| "workbench.settings.editor": "json", | |
| // Theme | |
| "workbench.colorTheme": "Min Dark", | |
| "workbench.iconTheme": "moxer-icons", | |
| "editor.smoothScrolling": true, | |
| // Change font | |
| "editor.fontFamily": "Geist Mono", | |
| "scm.inputFontFamily": "Geist Mono", | |
| "terminal.integrated.fontFamily": "Geist Mono", | |
| "chat.editor.fontFamily": "Geist Mono", | |
| "debug.console.fontFamily": "Geist Mono", | |
| "editor.codeLensFontFamily": "Geist Mono", | |
| "notebook.output.fontFamily": "Geist Mono", | |
| "markdown.preview.fontFamily": "Geist Mono", | |
| "editor.inlayHints.fontFamily": "Geist Mono", | |
| // Font size | |
| "editor.fontSize": 14, | |
| "terminal.integrated.fontSize": 12, | |
| "editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss01', 'ss02'", | |
| "editor.fontWeight": "500", | |
| "editor.letterSpacing": 0, | |
| "editor.lineHeight": 1.8, | |
| "terminal.integrated.letterSpacing": 0, | |
| // UI | |
| "editor.minimap.enabled": false, | |
| "window.commandCenter": false, | |
| "editor.scrollbar.vertical": "auto", | |
| "window.titleBarStyle": "custom", | |
| "editor.scrollbar.horizontal": "auto", | |
| // APC | |
| "apc.activityBar": { | |
| "position": "bottom", | |
| "hideSettings": true, | |
| "size": 28 | |
| }, | |
| "apc.electron": { | |
| "titleBarStyle": "hiddenInset", | |
| "trafficLightPosition": { | |
| "x": 12, | |
| "y": 10 | |
| } | |
| }, | |
| "apc.font.family": "Geist Mono", | |
| "apc.monospace.font.family": "Geist Mono", | |
| "apc.statusBar": { | |
| "position": "editor-bottom", | |
| "height": 28, | |
| "fontSize": 11 | |
| }, | |
| // Custom CSS | |
| "apc.stylesheet": { | |
| ".sidebar > .composite": "height: 16px !important", | |
| ".pane-body": "padding: 8px;", | |
| ".title-label": "display: none !important", | |
| ".tabs-and-actions-container > .editor-actions": "display: none !important", | |
| ".titlebar-center": "display: none !important", | |
| ".inline-tabs-placeholder": "display: none !important", | |
| ".part.sidebar.left.pane-composite-part > .composite.title": "display: none !important", | |
| ".split-view-view .visible": "background-color: #1a1a1a !important" | |
| }, | |
| // Aura theme customisation | |
| "workbench.colorCustomizations": { | |
| "[Aura Dark]": { | |
| "editor.background": "#110f17", | |
| "terminal.background": "#110f17", | |
| "activityBar.background": "#110f17", | |
| "statusBar.background": "#110f17", | |
| "editorGroupHeader.tabsBackground": "#110f17", | |
| "tab.inactiveBackground": "#110f17" | |
| }, | |
| "[Min Dark]": { | |
| "terminal.background": "#1a1a1a" | |
| } | |
| }, | |
| "explorer.compactFolders": false, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.semanticHighlighting.enabled": true, | |
| "breadcrumbs.enabled": false, | |
| "files.associations": { | |
| "*.json": "jsonc" | |
| }, | |
| // "terminal.integrated.fontFamily": "'Monaspace Neon'", | |
| "editor.mouseWheelZoom": true, | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.cursorBlinking": "smooth", | |
| "editor.cursorStyle": "block", | |
| "editor.tabSize": 2, | |
| "workbench.editorAssociations": { | |
| "*.pdf": "imagePreview.previewEditor" | |
| }, | |
| // "editor.fontFamily": "Cascadia Mono", | |
| // "editor.fontFamily": "Fira Code", | |
| // "editor.fontFamily": "'Monaspace Neon', monospace", | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": true, | |
| "markdown": false, | |
| "scminput": false | |
| }, | |
| "[java]": { | |
| "editor.defaultFormatter": "redhat.java" | |
| }, | |
| "editor.unicodeHighlight.allowedLocales": { | |
| "tr": true | |
| }, | |
| "prettier.printWidth": 120, | |
| "terminal.integrated.env.windows": {}, | |
| "console-ninja.featureSet": "Community", | |
| "dart.flutterSdkPath": "C:\\src\\flutter", | |
| "dart.openDevTools": "flutter", | |
| "update.mode": "manual", | |
| "window.menuBarVisibility": "compact", | |
| "workbench.layoutControl.enabled": false, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment