Skip to content

Instantly share code, notes, and snippets.

@AubreyF
Created September 29, 2023 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AubreyF/d70a496f8b563c1a2188f82101583707 to your computer and use it in GitHub Desktop.
Save AubreyF/d70a496f8b563c1a2188f82101583707 to your computer and use it in GitHub Desktop.
2023-09-29 VSCode settings.json
{
"[css]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[git-commit]": {
"editor.rulers": [72],
"workbench.editor.restoreViewState": false
},
"[html]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[json]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[jsonc]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[python]": {
"editor.formatOnPaste": false,
"editor.formatOnSaveMode": "file",
"editor.insertSpaces": true,
"editor.tabSize": 4
},
"[scss]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[yaml]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"autoHide.autoHideSideBar": false,
"autoHide.hideOnOpen": false,
"autoHide.panelDelay": 0,
"autoHide.sideBarDelay": 0,
"bracket-pair-colorizer-2.colors": ["Gold", "Orchid", "LightSkyBlue"],
"codemetrics.basics.DecorationModeEnabled": false,
"csharp.semanticHighlighting.enabled": true,
"cSpell.userWords": [
"anonymization",
"anonymized",
"Cyberspatial",
"endregion",
"Formik",
"hjson",
"lerp",
"unregister"
],
"customizeUI.stylesheet": {
".tabs-and-actions-container .editor-actions": "display: none !important; position: absolute; top: 38px; right: 0; z-index: 1; background-color: #2D2D2D;",
".tabs-and-actions-container:hover .editor-actions": "display: flex !important;",
".title.tabs.show-file-icons": "overflow: unset !important;",
"body.activity-bar-at-bottom .monaco-workbench .part.statusbar": "height: 22px !important;",
"body.inline-title-bar div.dragging-area-top": "flex-grow: 0;",
// https://github.com/iocave/customize-ui/issues/94#issuecomment-1086112968
// I just add this, so you can move window when workbench is empty (no tabs).
".monaco-workbench .part.editor > .content .editor-group-container.empty.active": "-webkit-app-region: drag;"
},
"customizeUI.titleBar": "inline",
"customizeUI.activityBar": "wide",
// "customizeUI.activityBar": "top",
// "customizeUI.titleBar": "frameless",
"debug.toolBarLocation": "docked",
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.wordWrap": "on",
"editor.acceptSuggestionOnCommitCharacter": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.detectIndentation": false,
"editor.find.addExtraSpaceOnTop": false,
"editor.fontFamily": "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.formatOnType": true,
"editor.insertSpaces": false,
"editor.linkedEditing": true,
// "editor.minimap.enabled": false,
"editor.overviewRulerBorder": false,
"editor.parameterHints.enabled": true,
"editor.quickSuggestions": {
"comments": true,
"other": true,
"strings": true
},
"editor.quickSuggestionsDelay": 10,
"editor.renderLineHighlight": "all",
"editor.scrollbar.horizontalScrollbarSize": 8,
// "editor.scrollbar.horizontal": "hidden",
// "editor.scrollbar.vertical": "hidden",
"editor.scrollbar.verticalScrollbarSize": 5,
"editor.semanticHighlighting.enabled": false,
"editor.snippetSuggestions": "top",
"editor.suggestOnTriggerCharacters": true,
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.wordBasedSuggestions": true,
"editor.wordWrap": "off",
"editor.wrappingIndent": "indent",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html"
},
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 30000,
"files.exclude": {
"**/__pycache__": false,
"**/.classpath": false,
"**/.factorypath": false,
"**/.history": false,
"**/.idea": false,
"**/.project": false,
"**/.pytest*": false,
"**/.settings": false,
"**/.venv": false,
"**/.vscode": false,
"**/*.pyc": false,
"**/~*": false
},
"formatFiles.extensionsToInclude": "ts,tsx,js,json,css,cp,cs",
"formattingToggle.affects": ["formatOnPaste", "formatOnSave", "formatOnType"],
"git.allowForcePush": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.followTagsWhenSync": true,
"git.showPushSuccessNotification": true,
"git.suggestSmartCommit": false,
"gitlens.codeLens.enabled": true,
"gitlens.hovers.currentLine.over": "line",
"gitlens.menus": {
"editorGroup": {
"blame": false,
"compare": false
}
},
"gitlens.statusBar.enabled": true,
"gitProjectManager.displayProjectPath": true,
"gitProjectManager.openInNewWindow": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"js/ts.implicitProjectConfig.checkJs": true,
"macros": {
"copyWithoutNewLine": [
"cursorHome",
"cursorEndSelect",
"editor.action.clipboardCopyAction",
"cancelSelection"
]
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"omnisharp.enableDecompilationSupport": false,
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.organizeImportsOnFormat": true,
"omnisharp.useGlobalMono": "never",
"powermode.enabled": true,
"powermode.enableShake": true,
"powermode.presets": "exploding-rift",
"projectNameInStatusBar.align": "left",
"projectNameInStatusBar.alignPriority": 999,
"python.analysis.completeFunctionParens": true,
"python.autoComplete.addBrackets": true,
"python.formatting.provider": "black",
"python.analysis.indexing": true,
"redhat.telemetry.enabled": false,
"search.exclude": {},
"search.useGlobalIgnoreFiles": true,
"sourcery.token": "user_515cWHuO7aoAwaLiIWZXvOzEDsxa3CmzMfN3b__YOcpzqcHQ33zKMYNiOg4",
"sqltools.autoConnectTo": "",
"sqltools.connections": [],
"tabnine.experimentalAutoImports": true,
"tabulous.activeTabColor": "none",
"tabulous.createNamedTerminalTouchBarButton": false,
"tabulous.renameTerminalTouchBarButton": false,
"tabulous.touchBar": false,
"telemetry.telemetryLevel": "off",
"terminal.integrated.confirmOnExit": "always",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.rightClickBehavior": "paste",
"terminal.integrated.scrollback": 10000,
// "terminal.integrated.tabs.enabled": false,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"todo-tree.tree.showScanModeButton": false,
"vsicons.dontShowNewVersionMessage": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.dialogStyle": "custom",
"workbench.colorCustomizations": {
"scrollbar.shadow": "#ffffff00",
"widget.shadow": "#ffffff00"
},
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.tabSizing": "shrink",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"workbench.list.automaticKeyboardNavigation": false,
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"go.toolsManagement.autoUpdate": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"errorLens.enabledDiagnosticLevels": ["error", "warning"],
"projectManager.openInNewWindowWhenClickingInStatusBar": true,
"window.newWindowDimensions": "maximized",
"window.openFilesInNewWindow": "on",
"importMagic.indentWithTabs": true,
"importMagic.maxColumns": 1,
"python.terminal.activateEnvInCurrentTerminal": true,
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": true,
"vsintellicode.features.python.deepLearning": "enabled",
"window.openFoldersInNewWindow": "on",
"remote.SSH.defaultExtensions": ["gitpod.gitpod-remote-ssh"],
"remote.SSH.configFile": "/var/folders/r0/kmf2ymy94cgd4697fw_lhvd80000gn/T/gitpod_ssh_config-66480-kGG7OjrQv1hX",
"workbench.colorTheme": "aub-darcula",
"editor.inlineSuggest.enabled": true,
"editor.guides.bracketPairs": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true
},
"terminal.integrated.fontFamily": "MesloLGS NF",
"workbench.editor.untitled.hint": "hidden",
"diffEditor.originalEditable": true,
"vs-kubernetes": {
"vscode-kubernetes.minikube-path.mac": "/Users/aubreyfalconer/.vs-kubernetes/tools/minikube/darwin-amd64/minikube",
"vscode-kubernetes.helm-path.mac": "/Users/aubreyfalconer/.vs-kubernetes/tools/helm/darwin-amd64/helm"
},
"files.associations": {
"*.html": "html"
},
"GitLive.Issue tracker integration": "Enabled",
"quokka.automaticRestart": true,
"quokka.compactMessageOutput": true,
"cSpell.customDictionaries": {
"custom-dictionary-user": {
"name": "custom-dictionary-user",
"path": "~/.cspell/custom-dictionary-user.txt",
"addWords": true,
"scope": "user"
}
},
"powermode.combo.threshold": 50,
"powermode.combo.timeout": 2,
"powermode.shake.enabled": false,
"powermode.combo.counterSize": 1,
"git.pruneOnFetch": true,
"git-graph.dialog.fetchRemote.prune": true,
"git-graph.dialog.fetchRemote.pruneTags": true,
"git-graph.repository.fetchAndPruneTags": true,
"git-graph.repository.fetchAndPrune": true,
"githubPullRequests.createOnPublishBranch": "never",
"references.preferredLocation": "view",
"explorer.fileNesting.enabled": true,
"editor.formatOnSave": true,
"git.mergeEditor": true,
"githubPullRequests.pullBranch": "never",
"editor.stickyScroll.enabled": true,
"npm.keybindingsChangedWarningShown": true,
"window.commandCenter": true,
"gitlens.graph.dimMergeCommits": true,
"gitlens.graph.minimap.dataType": "lines",
"gitlens.graph.minimap.additionalTypes": [
"localBranches",
"stashes",
"remoteBranches",
"tags"
],
"github.copilot-labs.showBrushesLenses": true,
"github.copilot-labs.advanced": {},
"github.copilot.advanced": {
"inlineSuggestCount": 10
},
"editor.accessibilitySupport": "off",
"editor.screenReaderAnnounceInlineSuggestion": false,
"eslint.format.enable": true,
"git.allowNoVerifyCommit": true,
"git.confirmNoVerifyCommit": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment