Created
October 26, 2022 03:14
-
-
Save mizdra/8ad2f4f045db9fb9551a188bcc762ed4 to your computer and use it in GitHub Desktop.
.vscode
This file contains 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 | |
"editor.fontFamily": "RictyDiminished Nerd Font", | |
"editor.fontSize": 16, | |
"terminal.integrated.fontSize": 14, | |
"editor.wordWrap": "off", | |
"workbench.colorTheme": "Monokai", | |
"editor.minimap.enabled": false, | |
"editor.dragAndDrop": true, | |
"editor.renderControlCharacters": true, | |
"breadcrumbs.enabled": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"highlight-matching-tag.highlightSelfClosing": true, | |
// 補完 | |
"editor.tabCompletion": "on", | |
"git.enableSmartCommit": true, | |
"gitlens.keymap": "alternate", | |
// encoding | |
"files.autoGuessEncoding": false, | |
"files.encoding": "utf8", | |
// Live Share | |
"liveshare.showInStatusBar": "whileCollaborating", | |
"liveshare.focusBehavior": "prompt", | |
// format | |
"editor.tabSize": 2, | |
"[rust]": { | |
"editor.tabSize": 4 | |
}, | |
// search | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
// Go | |
"go.autocompleteUnimportedPackages": true, | |
"go.formatTool": "goreturns", | |
"go.gocodeAutoBuild": true, | |
// JavaScript/TypeScript | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"C_Cpp.clang_format_style": "Google", | |
"workbench.startupEditor": "newUntitledFile", | |
"terminal.external.osxExec": "iTerm.app", | |
"git.autofetch": false, | |
"workbench.editor.limit.value": 10, | |
"extensions.ignoreRecommendations": false, | |
"githubPullRequests.queries": [ | |
{ | |
"label": "Waiting For My Review", | |
"query": "is:open review-requested:${user}" | |
}, | |
{ | |
"label": "Assigned To Me", | |
"query": "is:open assignee:${user}" | |
}, | |
{ | |
"label": "Created By Me", | |
"query": "is:open author:${user}" | |
}, | |
{ | |
"label": "Mentioned Me", | |
"query": "is:open mentions:${user}" | |
} | |
], | |
"git.confirmSync": false, | |
"workbench.editorAssociations": { | |
"git-rebase-todo": "default" | |
}, | |
"liveshare.allowGuestDebugControl": true, | |
"liveshare.allowGuestTaskControl": true, | |
"liveshare.allowInvites": "all", | |
"workbench.editor.wrapTabs": true, | |
"[markdown]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[perl]": { | |
"editor.defaultFormatter": "Kaktus.perltidy-more" | |
}, | |
"[swift]": { | |
"editor.tabSize": 4 | |
}, | |
"editor.largeFileOptimizations": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"files.associations": { | |
"*.json5": "json5", | |
"*.cts": "typescript" | |
}, | |
"redhat.telemetry.enabled": false, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"go.toolsManagement.autoUpdate": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "ms-vsliveshare.vsliveshare" | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.bracketPairColorization.enabled": true, | |
"typescript.tsserver.log": "off", | |
"editor.guides.bracketPairs": "active", | |
"editor.inlineSuggest.enabled": true, | |
"settingsSync.ignoredExtensions": ["github.copilot"], | |
"editor.suggestSelection": "recentlyUsedByPrefix", | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"dotfiles.repository": "mizdra/dotfiles", | |
"dotfiles.targetPath": "~/dotfiles", | |
"dotfiles.installCommand": "~/dotfiles/install.sh", | |
"githubPullRequests.terminalLinksHandler": "github", | |
"svelte.enable-ts-plugin": true, | |
"lldb.library": "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB", | |
"editor.guides.indentation": true, | |
"githubPullRequests.pullBranch": "never", | |
"vsicons.dontShowNewVersionMessage": true, | |
"jest.shell": "zsh", | |
"workbench.editor.limit.enabled": true, | |
"workbench.editor.limit.excludeDirty": true, | |
"diffEditor.renderSideBySide": false, | |
"terminal.integrated.shellIntegration.enabled": false, | |
"workbench.iconTheme": "vscode-great-icons", | |
"gitlens.views.commits.files.layout": "list", | |
"gitlens.views.formats.commits.label": "${(tips) }${message}", | |
"gitlens.views.formats.commits.description": "${agoOrDate}", | |
"gitlens.views.commits.showBranchComparison": false, | |
"gitlens.advanced.abbreviateShaOnCopy": true, | |
"gitlens.views.commits.pullRequests.showForBranches": false, | |
"gitlens.views.commits.pullRequests.enabled": false, | |
"editor.stickyScroll.enabled": true, | |
"npm.keybindingsChangedWarningShown": true, | |
"git.verboseCommit": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment