Created
April 15, 2024 14:20
-
-
Save vcfvct/23840634d332a59872c93cc913f45e20 to your computer and use it in GitHub Desktop.
vscode settings json snapshot
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.minimap.enabled": false, | |
"typescript.tsserver.log": "verbose", | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.tabSize": 2, | |
"gitlens.advanced.messages": { | |
"suppressGitMissingWarning": true, | |
}, | |
"editor.fontFamily": "'JetBrainsMono NF', 'FiraCode Nerd Font Mono' ,'JetBrainsMono Nerd Font Mono', 'JetBrainsMono NFM', monospace", | |
"explorer.confirmDelete": false, | |
"gitlens.keymap": "chorded", | |
"files.autoSave": "onWindowChange", | |
"cSpell.userWords": [ | |
"adwords", | |
"Akamai", | |
"alusky", | |
"Brotli", | |
"capitalone", | |
"cccg", | |
"cccgermantown", | |
"cloudfront", | |
"Consts", | |
"contentful", | |
"devops", | |
"ensighten", | |
"gensim", | |
"hammerjs", | |
"httpx", | |
"ndarray", | |
"Peid", | |
"promisify", | |
"proxied", | |
"psycopg", | |
"recurse", | |
"redirector", | |
"Retryable", | |
"saml", | |
"SDLC", | |
"smtp", | |
"tabindex", | |
"Tencent", | |
"typeorm", | |
"unmarshall", | |
"vcfvct", | |
"Yext" | |
], | |
"vim.useSystemClipboard": true, | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"x" | |
], | |
"after": [ | |
"\"", | |
"_", | |
"x" | |
] | |
}, | |
{ | |
"before": [ | |
"d" | |
], | |
"after": [ | |
"\"", | |
"_", | |
"d" | |
] | |
}, | |
{ | |
"before": [ | |
"<Enter>" | |
], | |
"commands": [ | |
"editor.action.commentLine" | |
] | |
}, | |
{ | |
"before": [ | |
"g", | |
"r" | |
], | |
"commands": [ | |
"editor.action.goToReferences" | |
] | |
}, | |
{ | |
"before": [ | |
"g", | |
"i" | |
], | |
"commands": [ | |
"editor.action.goToImplementation" | |
] | |
}, | |
{ | |
"before": [ | |
"<C-p>" | |
], | |
"commands": [ | |
"workbench.action.quickOpen" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"g" | |
], | |
"commands": [ | |
"workbench.action.editor.nextChange" | |
] | |
}, | |
{ | |
"before": [ | |
"[", | |
"g" | |
], | |
"commands": [ | |
"workbench.action.editor.previousChange" | |
] | |
}, | |
], | |
"vim.visualModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"d" | |
], | |
"after": [ | |
"\"", | |
"_", | |
"d" | |
] | |
}, | |
// Bind p in visual mode to paste without overriding the current register | |
{ | |
"before": [ | |
"p", | |
], | |
"after": [ | |
"p", | |
"g", | |
"v", | |
"y" | |
] | |
}, | |
{ | |
"before": [ | |
"<Enter>" | |
], | |
"commands": [ | |
"editor.action.blockComment" | |
] | |
} | |
], | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": [ | |
"j", | |
"j" | |
], | |
"after": [ | |
"<Esc>" | |
] | |
} | |
], | |
"vim.handleKeys": { | |
"<C-w>": false | |
}, | |
"breadcrumbs.enabled": true, | |
"workbench.colorTheme": "Tomorrow Night Blue", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"files.trimTrailingWhitespace": true, | |
"typescript.preferences.quoteStyle": "single", | |
"javascript.preferences.quoteStyle": "single", | |
"typescript.preferences.importModuleSpecifier": "relative", | |
"javascript.preferences.importModuleSpecifier": "relative", | |
"workbench.editor.highlightModifiedTabs": true, | |
"editor.multiCursorModifier": "alt", | |
"workbench.startupEditor": "newUntitledFile", | |
"gitlens.views.repositories.files.layout": "tree", | |
"vim.hlsearch": true, | |
"git.autofetch": true, | |
"yaml.format.enable": true, | |
"yaml.format.singleQuote": true, | |
// Custom tags for the parser to use | |
"yaml.customTags": [ | |
"!And", | |
"!If", | |
"!Not", | |
"!Equals", | |
"!Or", | |
"!FindInMap sequence", | |
"!Base64", | |
"!Cidr", | |
"!Ref", | |
"!Sub", | |
"!GetAtt", | |
"!GetAZs", | |
"!ImportValue", | |
"!Select", | |
"!Select sequence", | |
"!Split", | |
"!Join sequence", | |
"!And sequence", | |
"!If sequence", | |
"!Not sequence", | |
"!Equals sequence", | |
"!Or sequence", | |
"!FindInMap", | |
"!Join", | |
"!Sub sequence", | |
"!ImportValue sequence", | |
"!Split sequence" | |
], | |
"terminal.integrated.inheritEnv": false, | |
"files.associations": { | |
"Gearsfile": "yaml", | |
"Bogiefile": "yaml", | |
"*.omap": "json", | |
"*.sap": "json" | |
}, | |
"editor.renderWhitespace": "selection", | |
"terminal.integrated.fontFamily": "'JetBrainsMono Nerd Font Mono', 'FiraCode Nerd Font Mono' ,'JetBrainsMono NF', Monaco, monospace", | |
"editor.fontLigatures": true, | |
"debug.console.fontSize": 14, | |
"terminal.explorerKind": "external", | |
"vim.leader": ",", | |
"vim.vimrc.enable": false, | |
"gitlens.statusBar.format": "${author}, ${agoOrDate} • ${message}", | |
"gitlens.currentLine.format": "", | |
"editor.suggestSelection": "first", | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": "off" | |
}, | |
"editor.fontSize": 15, | |
"terminal.integrated.fontSize": 14, | |
"editor.cursorStyle": "line", | |
"editor.lineNumbers": "on", | |
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-", | |
"editor.wordWrap": "off", | |
"editor.inlayHints.fontFamily": "'FiraCode-Retina', 'JetBrainsMono Nerd Font Mono', 'FiraCode Nerd Font Mono' ,Menlo, Monaco, monospace", | |
"terminal.integrated.gpuAcceleration": "on", | |
"editor.insertSpaces": false, | |
"editor.bracketPairColorization.enabled": true, | |
"powermode.enabled": true, | |
"redhat.telemetry.enabled": true, | |
"editor.guides.bracketPairs": true, | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"python.languageServer": "Default", | |
"editor.inlineSuggest.enabled": true, | |
"typescript.inlayHints.functionLikeReturnTypes.enabled": true, | |
"javascript.inlayHints.functionLikeReturnTypes.enabled": true, | |
"window.titleBarStyle": "custom", | |
"editor.smoothScrolling": true, | |
"workbench.list.smoothScrolling": true, | |
"powermode.combo.location": "statusbar", | |
"powermode.combo.counterEnabled": "hide", | |
"powermode.combo.timerEnabled": "hide", | |
"powermode.shake.enabled": false, | |
"settingsSync.ignoredExtensions": [ | |
"esbenp.prettier-vscode" | |
], | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"notebook.lineNumbers": "on", | |
"window.commandCenter": true, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"terminal.integrated.smoothScrolling": true, | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"editor.accessibilitySupport": "off", | |
"git.openRepositoryInParentFolders": "never", | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.black-formatter" | |
}, | |
"python.testing.cwd": ".", | |
"window.zoomLevel": 1, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"python.analysis.typeCheckingMode": "basic", | |
"editor.defaultFormatter": "GitHub.copilot", | |
"remote.autoForwardPortsSource": "hybrid", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment