Created
August 4, 2024 21:53
-
-
Save yogeshvar/a12ab8fb4fc026d00e9a7a9a8ea4ce2d to your computer and use it in GitHub Desktop.
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
{ | |
"editor.inlineSuggest.enabled": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.fontLigatures": true, | |
"editor.cursorStyle": "line-thin", | |
"editor.parameterHints.enabled": false, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.accessibilityPageSize": 100, | |
"editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
"editor.defaultColorDecorators": true, | |
"editor.definitionLinkOpensInPeek": true, | |
"editor.foldingImportsByDefault": true, | |
"editor.maxTokenizationLineLength": 2000, | |
"editor.multiCursorLimit": 100, | |
"editor.scrollbar.horizontalScrollbarSize": 10, | |
"editor.scrollbar.verticalScrollbarSize": 12, | |
"editor.fontVariations": false, | |
"editor.minimap.autohide": true, | |
"editor.renderWhitespace": "boundary", | |
"editor.stickyScroll.enabled": true, | |
"editor.minimap.enabled": true, | |
"editor.minimap.showSlider": "always", | |
"editor.minimap.maxColumn": 100, | |
"editor.minimap.renderCharacters": false, | |
"editor.minimap.size": "fill", | |
"editor.guides.bracketPairs": "active", | |
"editor.formatOnSaveMode": "modifications", | |
"editor.accessibilitySupport": "off", | |
"editor.foldingMaximumRegions": 10000, | |
"editor.fontFamily": "Fira Code", | |
"editor.linkedEditing": true, | |
"editor.wordWrap": "on", | |
"cSpell.experimental.enableSettingsViewerV2": true, | |
"cSpell.caseSensitive": true, | |
"cSpell.enableFiletypes": ["!json"], | |
"cSpell.ignorePaths": [ | |
"package-lock.json", | |
"node_modules", | |
"vscode-extension", | |
".git/objects", | |
".vscode", | |
".vscode-insiders", | |
"settings.json" | |
], | |
"cSpell.diagnosticLevel": "Hint", | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 500, | |
"files.restoreUndoStack": false, | |
"files.autoGuessEncoding": true, | |
"files.associations": { | |
"*.mdx": "markdown", | |
"*.ts": "typescript" | |
}, | |
"explorer.decorations.colors": true, | |
"explorer.incrementalNaming": "smart", | |
"explorer.confirmDelete": false, | |
"explorer.sortOrder": "type", | |
"explorer.confirmDragAndDrop": false, | |
"security.workspace.trust.untrustedFiles": "open", | |
"workbench.colorTheme": "Alt Catppuccin Frappé", | |
"problems.decorations.enabled": true, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/*.code-search": true, | |
"**/*.lock": true, | |
"**/*-lock.json": true | |
}, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.iconTheme": "catppuccin-mocha", | |
"workbench.editor.centeredLayoutFixedWidth": true, | |
"workbench.editorAssociations": { | |
"git-rebase-todo": "default", | |
"*.xlsx": "default", | |
"{git,gitlens}:/**/*.{md,csv,svg}": "default" | |
}, | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"git.openRepositoryInParentFolders": "never", | |
"git.autoStash": true, | |
"git.mergeEditor": true, | |
"git.suggestSmartCommit": false, | |
"gitlens.currentLine.format": "${author, }${agoOrDate}${ • message|50?}${ • id}", | |
"gitlens.currentLine.uncommittedChangesFormat": "✏️ ${agoOrDate}", | |
"gitlens.codeLens.scopes": [ | |
"document", | |
"containers", | |
"blocks" | |
], | |
"gitlens.codeLens.authors.command": false, | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.statusBar.pullRequests.enabled": false, | |
"gitlens.statusBar.reduceFlicker": false, | |
"gitlens.statusBar.enabled": false, | |
"gitlens.hovers.avatars": false, | |
"gitlens.hovers.currentLine.changes": false, | |
"gitlens.graph.defaultItemLimit": 100, | |
"gitlens.graph.pageItemLimit": 75, | |
"gitlens.graph.searchItemLimit": 50, | |
"gitlens.graph.dimMergeCommits": true, | |
"gitlens.graph.showRemoteNames": true, | |
"gitlens.graph.dateStyle": "relative", | |
"gitlens.views.fileHistory.avatars": false, | |
"gitlens.views.lineHistory.avatars": false, | |
"gitlens.views.branches.avatars": false, | |
"gitlens.views.remotes.avatars": false, | |
"gitlens.views.contributors.showAllBranches": true, | |
"diffEditor.diffAlgorithm": "advanced", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.startupEditor": "none", | |
"workbench.editor.decorations.colors": true, | |
"workbench.tree.indent": 11, | |
"workbench.colorCustomizations": { | |
"tree.indentGuidesStroke": "#195990" | |
}, | |
"workbench.sideBar.location": "right", | |
"window.newWindowDimensions": "inherit", | |
"window.openFilesInNewWindow": "default", | |
"window.restoreWindows": "none", | |
"window.density.editorTabHeight": "compact", | |
"window.titleBarStyle": "custom", | |
"terminal.integrated.fontFamily": "Hack Nerd Font", | |
"extensions.ignoreRecommendations": true, | |
"quokka.showStartViewOnFeatureRelease": false, | |
"quokka.automaticRestart": true, | |
"quokka.codeClipAutoUpload": true, | |
"quokka.compactMessageOutput": true, | |
"quokka.suppressExpirationNotifications": true, | |
"AREPL.keepPreviousVars": true, | |
"AREPL.delay": 400, | |
"zenMode.hideActivityBar": false, | |
"zenMode.centerLayout": false, | |
"cSpell.userWords": [ | |
"AREPL", | |
"quokka" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment