-
-
Save maanimis/e34fcf04034bd63c9362d527f24a200e to your computer and use it in GitHub Desktop.
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
| { | |
| // UI | |
| "workbench.iconTheme": "hypernym-icons", | |
| "workbench.colorTheme": "FullstacksJS (Dark)", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.cursorBlinking": "smooth", | |
| "editor.fontFamily": "'Monaspace Argon', 'DejaVuSansM Nerd Font', sans", | |
| "editor.codeLensFontFamily": "'Monaspace Argon'", | |
| "editor.inlineSuggest.fontFamily": "'Monaspace Argon'", | |
| "markdown.preview.fontFamily": "'Monaspace Argon'", | |
| "editor.inlayHints.fontFamily": "'Monaspace Argon'", | |
| "editor.fontLigatures": "'ss02', 'ss03', 'ss04', 'ss08', 'ss09', 'ss10', 'calt', 'liga'", | |
| "editor.lineHeight": 2.5, | |
| "editor.letterSpacing": 0.2, | |
| "editor.renderLineHighlight": "all", | |
| "hypernym-icons.icons.size": "95%", | |
| "hypernym-icons.folders.size": "90%", | |
| "editor.renderWhitespace": "boundary", | |
| "editor.smoothScrolling": true, | |
| "editor.suggestFontSize": 11, | |
| "scm.diffDecorationsGutterWidth": 2, | |
| "window.menuBarVisibility": "toggle", | |
| "window.titleBarStyle": "native", | |
| "window.customTitleBarVisibility": "never", | |
| "workbench.editor.decorations.badges": false, | |
| "workbench.list.smoothScrolling": true, | |
| "workbench.startupEditor": "none", | |
| "workbench.tips.enabled": false, | |
| "workbench.tree.indent": 16, | |
| "workbench.tree.renderIndentGuides": "always", | |
| "workbench.editor.editorActionsLocation": "hidden", | |
| "workbench.sideBar.location": "right", | |
| "breadcrumbs.enabled": false, | |
| // Zen mode | |
| "zenMode.centerLayout": false, | |
| "zenMode.hideLineNumbers": false, | |
| // Behavior | |
| "explorer.confirmDragAndDrop": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "explorer.autoReveal": true, | |
| "explorer.compactFolders": false, | |
| "explorer.decorations.badges": false, | |
| "explorer.incrementalNaming": "smart", | |
| "editor.gotoLocation.multipleDefinitions": "goto", | |
| "editor.gotoLocation.multipleReferences": "goto", | |
| "editor.snippetSuggestions": "inline", | |
| "extensions.ignoreRecommendations": true, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| }, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/*.code-search": true, | |
| "package-lock.json": true, | |
| "pnpm-lock.yaml": true, | |
| }, | |
| "search.quickOpen.includeHistory": false, | |
| "terminal.integrated.allowMnemonics": true, | |
| "terminal.integrated.lineHeight": 1.3, | |
| "terminal.integrated.shellIntegration.decorationsEnabled": "never", | |
| "typescript.tsserver.maxTsServerMemory": 6000, | |
| // Editor | |
| "editor.quickSuggestions": { | |
| "other": "on", | |
| "comments": "inline", | |
| "strings": "on" | |
| }, | |
| "editor.tabSize": 2, | |
| "editor.formatOnSave": true, | |
| "editor.parameterHints.enabled": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.linkedEditing": true, | |
| "javascript.referencesCodeLens.enabled": true, | |
| "javascript.referencesCodeLens.showOnAllFunctions": true, | |
| "files.insertFinalNewline": true, | |
| "files.trimTrailingWhitespace": true, | |
| "json.maxItemsComputed": 3000, | |
| "references.preferredLocation": "view", | |
| "typescript.preferences.autoImportFileExcludePatterns": [ | |
| "^vm$", | |
| "^console$", | |
| "^node:console$" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment