From 0cc42e4920bbb22de20b97ae561008b0250c1dfc Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Fri, 7 Jun 2024 00:50:47 -0700 Subject: [PATCH] Misc: - Blank BetterDiscord theme for future use. - GoXLR systemd unit and setup script. - VSCodium config. - Razer and OBS setup scripts. --- .../config/discord/Breezy.theme.css | 7 + dotfiles_gitea/config/goxlr/GoXLR.service | 9 + dotfiles_gitea/config/vscodium/settings.json | 1587 +++++++++++++++++ .../setup-scripts/fedora-install-obs.sh | 9 + .../setup-scripts/fedora-install-razer.sh | 6 + .../setup-scripts/fedora-setup-goxlr.sh | 7 +- 6 files changed, 1624 insertions(+), 1 deletion(-) create mode 100644 dotfiles_gitea/config/discord/Breezy.theme.css create mode 100644 dotfiles_gitea/config/goxlr/GoXLR.service create mode 100644 dotfiles_gitea/config/vscodium/settings.json create mode 100644 dotfiles_gitea/setup-scripts/fedora-install-obs.sh create mode 100644 dotfiles_gitea/setup-scripts/fedora-install-razer.sh diff --git a/dotfiles_gitea/config/discord/Breezy.theme.css b/dotfiles_gitea/config/discord/Breezy.theme.css new file mode 100644 index 00000000..57ce3a0b --- /dev/null +++ b/dotfiles_gitea/config/discord/Breezy.theme.css @@ -0,0 +1,7 @@ +/** + * @name Discord Breeze Dark + * @author Jafner + * @description Shitty attempt to replicate KDE's Breeze Dark + * @version 0.0.1 + */ + diff --git a/dotfiles_gitea/config/goxlr/GoXLR.service b/dotfiles_gitea/config/goxlr/GoXLR.service new file mode 100644 index 00000000..a921fcbe --- /dev/null +++ b/dotfiles_gitea/config/goxlr/GoXLR.service @@ -0,0 +1,9 @@ +[Unit] +Description=GoXLR Utility Daemon +After=network.target + +[Service] +ExecStart=/usr/bin/goxlr-daemon + +[Install] +WantedBy=default.target \ No newline at end of file diff --git a/dotfiles_gitea/config/vscodium/settings.json b/dotfiles_gitea/config/vscodium/settings.json new file mode 100644 index 00000000..08b3c121 --- /dev/null +++ b/dotfiles_gitea/config/vscodium/settings.json @@ -0,0 +1,1587 @@ +{ + "explorer.confirmDelete": false, + "git.autofetch": true, + "git.confirmSync": false, + "security.workspace.trust.untrustedFiles": "open", + "terminal.integrated.defaultProfile.linux": "bash", + "python.diagnostics.sourceMapsEnabled": true, + "tabnine.experimentalAutoImports": true, + "tabnine.disableFileRegex": [ + ], + "git.enableSmartCommit": true, + "workbench.startupEditor": "none", + "continue.enableTabAutocomplete": true, + "terminal-override.command": "konsole", + "explorer.confirmDragAndDrop": false, + "workbench.colorCustomizations": { + "focusBorder": "#31363B", + "foreground": "#EFF0F1", + "disabledForeground": "#EFF0F1", + "widget.border": "#00000000", + "widget.shadow": "#00000000", + "selection.background": "#6992C1", + "descriptionForeground": "#EFF0F1", + "errorForeground": "#da4453", + "icon.foreground": "#EFF0F1", + "sash.hoverBorder": "#6992C1", + "window.activeBorder": "#292D32", + "window.inactiveBorder": "#292D32", + "textBlockQuote.background": "#292D32", + "textCodeBlock.background": "#292D32", + "textLink.activeForeground": "#EFF0F1", + "textLink.foreground": "#EFF0F1", + "toolbar.hoverBackground": "#31363B", + "toolbar.hoverOutline": "#6992C1", + "toolbar.activeBackground": "#6992C1", + "sideBar.background": "#292D32", + "editor.background": "#222528", + "sideBarSectionHeader.background": "#292D32", + "list.activeSelectionBackground": "#6992C1", + "list.activeSelectionForeground": "#EFF0F1", + "list.focusBackground": "#1E485D", + "list.hoverBackground": "#1E485D", + "list.hoverForeground": "#EFF0F1", + "activityBar.background": "#292D32", + "editorGroup.border": "#EFF0F1", + "editorGroup.dropBackground": "#404345", + "editorGroupHeader.noTabsBackground": "#292D32", + "editorGroupHeader.tabsBackground": "#292D32", + "editorGroupHeader.tabsBorder": "#292D32", + "tab.activeBackground": "#31363B", + "tab.inactiveBackground": "#292D32", + "tab.hoverBackground": "#404345", + "statusBar.background": "#292D32" + }, + "telemetry.enableCrashReporter": false, + "telemetry.enableTelemetry": true, + "telemetry.telemetryLevel": "off", + "diffEditor.codeLens": false, + "diffEditor.diffAlgorithm": "advanced", + "diffEditor.experimental.showEmptyDecorations": true, + "diffEditor.experimental.showMoves": false, + "diffEditor.hideUnchangedRegions.contextLineCount": 3, + "diffEditor.hideUnchangedRegions.enabled": false, + "diffEditor.hideUnchangedRegions.minimumLineCount": 3, + "diffEditor.hideUnchangedRegions.revealLineCount": 20, + "diffEditor.ignoreTrimWhitespace": true, + "diffEditor.maxComputationTime": 5000, + "diffEditor.maxFileSize": 50, + "diffEditor.renderGutterMenu": true, + "diffEditor.renderIndicators": true, + "diffEditor.renderMarginRevertIcon": true, + "diffEditor.renderSideBySide": true, + "diffEditor.renderSideBySideInlineBreakpoint": 900, + "diffEditor.useInlineViewWhenSpaceIsLimited": true, + "diffEditor.wordWrap": "inherit", + "editor.acceptSuggestionOnCommitCharacter": true, + "editor.acceptSuggestionOnEnter": "on", + "editor.accessibilityPageSize": 10, + "editor.accessibilitySupport": "auto", + "editor.autoClosingBrackets": "languageDefined", + "editor.autoClosingComments": "languageDefined", + "editor.autoClosingDelete": "auto", + "editor.autoClosingOvertype": "auto", + "editor.autoClosingQuotes": "languageDefined", + "editor.autoIndent": "full", + "editor.autoSurround": "languageDefined", + "editor.bracketPairColorization.enabled": true, + "editor.bracketPairColorization.independentColorPoolPerBracketType": false, + "editor.codeActionsOnSave": {}, + "editor.codeActionWidget.includeNearbyQuickFixes": true, + "editor.codeActionWidget.showHeaders": true, + "editor.codeLens": true, + "editor.codeLensFontFamily": "", + "editor.codeLensFontSize": 0, + "editor.colorDecorators": true, + "editor.colorDecoratorsActivatedOn": "clickAndHover", + "editor.colorDecoratorsLimit": 500, + "editor.columnSelection": false, + "editor.comments.ignoreEmptyLines": true, + "editor.comments.insertSpace": true, + "editor.copyWithSyntaxHighlighting": true, + "editor.cursorBlinking": "blink", + "editor.cursorSmoothCaretAnimation": "off", + "editor.cursorStyle": "line", + "editor.cursorSurroundingLines": 0, + "editor.cursorSurroundingLinesStyle": "default", + "editor.cursorWidth": 0, + "editor.defaultColorDecorators": false, + "editor.defaultFoldingRangeProvider": null, + "editor.defaultFormatter": null, + "editor.definitionLinkOpensInPeek": false, + "editor.detectIndentation": true, + "editor.dragAndDrop": true, + "editor.dropIntoEditor.enabled": true, + "editor.dropIntoEditor.showDropSelector": "afterDrop", + "editor.emptySelectionClipboard": true, + "editor.experimental.asyncTokenization": false, + "editor.experimental.asyncTokenizationLogging": false, + "editor.experimental.asyncTokenizationVerification": false, + "editor.experimental.dropIntoEditor.defaultProvider": {}, + "editor.experimentalInlineEdit.backgroundColoring": false, + "editor.experimentalInlineEdit.enabled": false, + "editor.experimentalInlineEdit.fontFamily": "default", + "editor.experimentalInlineEdit.showToolbar": "onHover", + "editor.experimentalWhitespaceRendering": "svg", + "editor.fastScrollSensitivity": 5, + "editor.find.addExtraSpaceOnTop": true, + "editor.find.autoFindInSelection": "never", + "editor.find.cursorMoveOnType": true, + "editor.find.loop": true, + "editor.find.seedSearchStringFromSelection": "always", + "editor.folding": true, + "editor.foldingHighlight": true, + "editor.foldingImportsByDefault": false, + "editor.foldingMaximumRegions": 5000, + "editor.foldingStrategy": "auto", + "editor.fontFamily": "'Droid Sans Mono', 'monospace', monospace", + "editor.fontLigatures": false, + "editor.fontSize": 14, + "editor.fontVariations": false, + "editor.fontWeight": "normal", + "editor.formatOnPaste": false, + "editor.formatOnSave": false, + "editor.formatOnSaveMode": "file", + "editor.formatOnType": false, + "editor.glyphMargin": true, + "editor.gotoLocation.alternativeDeclarationCommand": "editor.action.goToReferences", + "editor.gotoLocation.alternativeDefinitionCommand": "editor.action.goToReferences", + "editor.gotoLocation.alternativeImplementationCommand": "", + "editor.gotoLocation.alternativeReferenceCommand": "", + "editor.gotoLocation.alternativeTypeDefinitionCommand": "editor.action.goToReferences", + "editor.gotoLocation.multiple": null, + "editor.gotoLocation.multipleDeclarations": "peek", + "editor.gotoLocation.multipleDefinitions": "peek", + "editor.gotoLocation.multipleImplementations": "peek", + "editor.gotoLocation.multipleReferences": "peek", + "editor.gotoLocation.multipleTypeDefinitions": "peek", + "editor.guides.bracketPairs": false, + "editor.guides.bracketPairsHorizontal": "active", + "editor.guides.highlightActiveBracketPair": true, + "editor.guides.highlightActiveIndentation": true, + "editor.guides.indentation": true, + "editor.hideCursorInOverviewRuler": false, + "editor.hover.above": true, + "editor.hover.delay": 300, + "editor.hover.enabled": true, + "editor.hover.hidingDelay": 300, + "editor.hover.sticky": true, + "editor.indentSize": "tabSize", + "editor.inlayHints.enabled": "on", + "editor.inlayHints.fontFamily": "", + "editor.inlayHints.fontSize": 0, + "editor.inlayHints.padding": false, + "editor.inlineCompletionsAccessibilityVerbose": false, + "editor.inlineSuggest.enabled": true, + "editor.inlineSuggest.fontFamily": "default", + "editor.inlineSuggest.showToolbar": "onHover", + "editor.inlineSuggest.suppressSuggestions": false, + "editor.insertSpaces": true, + "editor.language.brackets": null, + "editor.language.colorizedBracketPairs": null, + "editor.largeFileOptimizations": true, + "editor.letterSpacing": 0, + "editor.lightbulb.enabled": "on", + "editor.lineHeight": 0, + "editor.lineNumbers": "on", + "editor.linkedEditing": false, + "editor.links": true, + "editor.matchBrackets": "always", + "editor.maxTokenizationLineLength": 20000, + "editor.minimap.autohide": false, + "editor.minimap.enabled": true, + "editor.minimap.maxColumn": 120, + "editor.minimap.renderCharacters": true, + "editor.minimap.scale": 1, + "editor.minimap.sectionHeaderFontSize": 9, + "editor.minimap.showMarkSectionHeaders": true, + "editor.minimap.showRegionSectionHeaders": true, + "editor.minimap.showSlider": "mouseover", + "editor.minimap.side": "right", + "editor.minimap.size": "proportional", + "editor.mouseWheelScrollSensitivity": 1, + "editor.mouseWheelZoom": false, + "editor.multiCursorLimit": 10000, + "editor.multiCursorMergeOverlapping": true, + "editor.multiCursorModifier": "alt", + "editor.multiCursorPaste": "spread", + "editor.occurrencesHighlight": "singleFile", + "editor.overviewRulerBorder": true, + "editor.padding.bottom": 0, + "editor.padding.top": 0, + "editor.parameterHints.cycle": true, + "editor.parameterHints.enabled": true, + "editor.pasteAs.enabled": true, + "editor.pasteAs.showPasteSelector": "afterPaste", + "editor.peekWidgetDefaultFocus": "tree", + "editor.quickSuggestions": { "other": "on", "comments": "off", "strings": "off"}, + "editor.quickSuggestionsDelay": 10, + "editor.rename.enablePreview": true, + "editor.renameOnType": false, + "editor.renderControlCharacters": true, + "editor.renderFinalNewline": "dimmed", + "editor.renderLineHighlight": "line", + "editor.renderLineHighlightOnlyWhenFocus": false, + "editor.renderWhitespace": "selection", + "editor.roundedSelection": true, + "editor.rulers": [], + "editor.screenReaderAnnounceInlineSuggestion": true, + "editor.scrollbar.horizontal": "auto", + "editor.scrollbar.horizontalScrollbarSize": 12, + "editor.scrollbar.ignoreHorizontalScrollbarInContentHeight": false, + "editor.scrollbar.scrollByPage": false, + "editor.scrollbar.vertical": "auto", + "editor.scrollbar.verticalScrollbarSize": 14, + "editor.scrollBeyondLastColumn": 4, + "editor.scrollBeyondLastLine": true, + "editor.scrollPredominantAxis": true, + "editor.selectionClipboard": true, + "editor.selectionHighlight": true, + "editor.semanticHighlighting.enabled": "configuredByTheme", + "editor.semanticTokenColorCustomizations": {}, + "editor.showDeprecated": true, + "editor.showFoldingControls": "mouseover", + "editor.showUnused": true, + "editor.smartSelect.selectLeadingAndTrailingWhitespace": true, + "editor.smartSelect.selectSubwords": true, + "editor.smoothScrolling": false, + "editor.snippets.codeActions.enabled": true, + "editor.snippetSuggestions": "inline", + "editor.stablePeek": false, + "editor.stickyScroll.defaultModel": "outlineModel", + "editor.stickyScroll.enabled": true, + "editor.stickyScroll.maxLineCount": 5, + "editor.stickyScroll.scrollWithEditor": true, + "editor.stickyTabStops": false, + "editor.suggest.filteredTypes": {}, + "editor.suggest.filterGraceful": true, + "editor.suggest.insertMode": "insert", + "editor.suggest.localityBonus": false, + "editor.suggest.matchOnWordStartOnly": true, + "editor.suggest.maxVisibleSuggestions": 0, + "editor.suggest.preview": false, + "editor.suggest.selectionMode": "always", + "editor.suggest.shareSuggestSelections": false, + "editor.suggest.showClasses": true, + "editor.suggest.showColors": true, + "editor.suggest.showConstants": true, + "editor.suggest.showConstructors": true, + "editor.suggest.showCustomcolors": true, + "editor.suggest.showDeprecated": true, + "editor.suggest.showEnumMembers": true, + "editor.suggest.showEnums": true, + "editor.suggest.showEvents": true, + "editor.suggest.showFields": true, + "editor.suggest.showFiles": true, + "editor.suggest.showFolders": true, + "editor.suggest.showFunctions": true, + "editor.suggest.showIcons": true, + "editor.suggest.showInlineDetails": true, + "editor.suggest.showInterfaces": true, + "editor.suggest.showIssues": true, + "editor.suggest.showKeywords": true, + "editor.suggest.showMethods": true, + "editor.suggest.showModules": true, + "editor.suggest.showOperators": true, + "editor.suggest.showProperties": true, + "editor.suggest.showReferences": true, + "editor.suggest.showSnippets": true, + "editor.suggest.showStatusBar": false, + "editor.suggest.showStructs": true, + "editor.suggest.showTypeParameters": true, + "editor.suggest.showUnits": true, + "editor.suggest.showUsers": true, + "editor.suggest.showValues": true, + "editor.suggest.showVariables": true, + "editor.suggest.showWords": true, + "editor.suggest.snippetsPreventQuickSuggestions": false, + "editor.suggestFontSize": 0, + "editor.suggestLineHeight": 0, + "editor.suggestOnTriggerCharacters": true, + "editor.suggestSelection": "first", + "editor.tabCompletion": "off", + "editor.tabFocusMode": false, + "editor.tabSize": 4, + "editor.tokenColorCustomizations": {}, + "editor.trimAutoWhitespace": true, + "editor.unfoldOnClickAfterEndOfLine": false, + "editor.unicodeHighlight.allowedCharacters": {}, + "editor.unicodeHighlight.allowedLocales": { "_os": true, "_vscode": true}, + "editor.unicodeHighlight.ambiguousCharacters": true, + "editor.unicodeHighlight.includeComments": "inUntrustedWorkspace", + "editor.unicodeHighlight.includeStrings": true, + "editor.unicodeHighlight.invisibleCharacters": true, + "editor.unicodeHighlight.nonBasicASCII": "inUntrustedWorkspace", + "editor.unusualLineTerminators": "prompt", + "editor.useTabStops": true, + "editor.wordBasedSuggestions": "matchingDocuments", + "editor.wordBreak": "normal", + "editor.wordSegmenterLocales": null, + "editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?", + "editor.wordWrap": "off", + "editor.wordWrapColumn": 80, + "editor.wrappingIndent": "same", + "editor.wrappingStrategy": "simple", + "inlineChat.acceptedOrDiscardBeforeSave": true, + "inlineChat.accessibleDiffView": "auto", + "inlineChat.finishOnType": false, + "inlineChat.holdToSpeech": true, + "inlineChat.mode": "live", + "scm.alwaysShowActions": false, + "scm.alwaysShowRepositories": false, + "scm.autoReveal": true, + "scm.countBadge": "all", + "scm.defaultViewMode": "list", + "scm.defaultViewSortKey": "path", + "scm.diffDecorations": "all", + "scm.diffDecorationsGutterAction": "diff", + "scm.diffDecorationsGutterPattern": { "added": false, "modified": true}, + "scm.diffDecorationsGutterVisibility": "always", + "scm.diffDecorationsGutterWidth": 3, + "scm.diffDecorationsIgnoreTrimWhitespace": "false", + "scm.inputFontFamily": "default", + "scm.inputFontSize": 13, + "scm.inputMaxLineCount": 10, + "scm.inputMinLineCount": 1, + "scm.providerCountBadge": "hidden", + "scm.repositories.sortOrder": "discovery time", + "scm.repositories.visible": 10, + "scm.showActionButton": true, + "scm.showChangesSummary": true, + "scm.showIncomingChanges": "auto", + "scm.showInputActionButton": true, + "scm.showOutgoingChanges": "auto", + "scm.workingSets.default": "current", + "scm.workingSets.enabled": false, + "security.promptForLocalFileProtocolHandling": true, + "security.promptForRemoteFileProtocolHandling": true, + "security.workspace.trust.banner": "untilDismissed", + "security.workspace.trust.emptyWindow": true, + "security.workspace.trust.enabled": true, + "security.workspace.trust.startupPrompt": "once", + "accessibility.dimUnfocused.enabled": false, + "accessibility.dimUnfocused.opacity": 0.75, + "accessibility.hideAccessibleView": false, + "window.density.editorTabHeight": "default", + "workbench.activityBar.iconClickBehavior": "toggle", + "workbench.activityBar.location": "default", + "workbench.cloudChanges.autoResume": "onReload", + "workbench.cloudChanges.continueOn": "prompt", + "workbench.colorTheme": "Default Dark Modern", + "workbench.commandPalette.experimental.askChatLocation": "chatView", + "workbench.commandPalette.experimental.enableNaturalLanguageSearch": true, + "workbench.commandPalette.experimental.suggestCommands": false, + "workbench.commandPalette.history": 50, + "workbench.commandPalette.preserveInput": false, + "workbench.editor.autoLockGroups": { "default": false, "workbench.editor.chatSession": false, "workbench.editorinputs.searchEditorInput": false, "workbench.editors.gettingStartedInput": false, "terminalEditor": true, "jupyter-notebook": false, "imagePreview.previewEditor": false, "vscode.audioPreview": false, "vscode.videoPreview": false, "jsProfileVisualizer.cpuprofile.table": false, "jsProfileVisualizer.heapprofile.table": false, "jsProfileVisualizer.heapsnapshot.table": false, "workbench.input.interactive": false, "mainThreadWebview-markdown.preview": false, "mainThreadWebview-simpleBrowser.view": true, "mainThreadWebview-browserPreview": true}, + "workbench.editor.centeredLayoutAutoResize": true, + "workbench.editor.centeredLayoutFixedWidth": false, + "workbench.editor.closeEmptyGroups": true, + "workbench.editor.closeOnFileDelete": false, + "workbench.editor.customLabels.enabled": true, + "workbench.editor.customLabels.patterns": {}, + "workbench.editor.decorations.badges": true, + "workbench.editor.decorations.colors": true, + "workbench.editor.defaultBinaryEditor": "", + "workbench.editor.doubleClickTabToToggleEditorGroupSizes": "expand", + "workbench.editor.dragToOpenWindow": true, + "workbench.editor.editorActionsLocation": "default", + "workbench.editor.empty.hint": "text", + "workbench.editor.enablePreview": true, + "workbench.editor.enablePreviewFromCodeNavigation": false, + "workbench.editor.enablePreviewFromQuickOpen": false, + "workbench.editor.focusRecentEditorAfterClose": true, + "workbench.editor.highlightModifiedTabs": false, + "workbench.editor.historyBasedLanguageDetection": true, + "workbench.editor.labelFormat": "default", + "workbench.editor.languageDetection": true, + "workbench.editor.languageDetectionHints": { "untitledEditors": true, "notebookEditors": true}, + "workbench.editor.limit.enabled": false, + "workbench.editor.limit.excludeDirty": false, + "workbench.editor.limit.perEditorGroup": false, + "workbench.editor.limit.value": 10, + "workbench.editor.mouseBackForwardToNavigate": true, + "workbench.editor.navigationScope": "default", + "workbench.editor.openPositioning": "right", + "workbench.editor.openSideBySideDirection": "right", + "workbench.editor.pinnedTabSizing": "normal", + "workbench.editor.pinnedTabsOnSeparateRow": false, + "workbench.editor.preferHistoryBasedLanguageDetection": false, + "workbench.editor.preventPinnedEditorClose": "keyboardAndMouse", + "workbench.editor.restoreViewState": true, + "workbench.editor.revealIfOpen": false, + "workbench.editor.scrollToSwitchTabs": false, + "workbench.editor.sharedViewState": false, + "workbench.editor.showIcons": true, + "workbench.editor.showTabs": "multiple", + "workbench.editor.splitInGroupLayout": "horizontal", + "workbench.editor.splitOnDragAndDrop": true, + "workbench.editor.splitSizing": "auto", + "workbench.editor.tabActionCloseVisibility": true, + "workbench.editor.tabActionLocation": "right", + "workbench.editor.tabActionUnpinVisibility": true, + "workbench.editor.tabSizing": "fit", + "workbench.editor.tabSizingFixedMaxWidth": 160, + "workbench.editor.tabSizingFixedMinWidth": 50, + "workbench.editor.titleScrollbarSizing": "default", + "workbench.editor.untitled.labelFormat": "content", + "workbench.editor.wrapTabs": false, + "workbench.editorAssociations": {}, + "workbench.editorLargeFileConfirmation": 1024, + "workbench.enableExperiments": true, + "workbench.experimental.cloudChanges.autoStore": "off", + "workbench.experimental.cloudChanges.partialMatches.enabled": false, + "workbench.experimental.share.enabled": false, + "workbench.externalUriOpeners": {}, + "workbench.hover.delay": 500, + "workbench.iconTheme": "vs-seti", + "workbench.layoutControl.enabled": true, + "workbench.layoutControl.type": "both", + "workbench.list.defaultFindMatchType": "fuzzy", + "workbench.list.defaultFindMode": "highlight", + "workbench.list.fastScrollSensitivity": 5, + "workbench.list.horizontalScrolling": false, + "workbench.list.keyboardNavigation": "highlight", + "workbench.list.mouseWheelScrollSensitivity": 1, + "workbench.list.multiSelectModifier": "ctrlCmd", + "workbench.list.openMode": "singleClick", + "workbench.list.scrollByPage": false, + "workbench.list.smoothScrolling": false, + "workbench.list.typeNavigationMode": "automatic", + "workbench.localHistory.enabled": true, + "workbench.localHistory.exclude": {}, + "workbench.localHistory.maxFileEntries": 50, + "workbench.localHistory.maxFileSize": 256, + "workbench.localHistory.mergeWindow": 10, + "workbench.panel.defaultLocation": "bottom", + "workbench.panel.opensMaximized": "preserve", + "workbench.preferredDarkColorTheme": "Default Dark Modern", + "workbench.preferredHighContrastColorTheme": "Default High Contrast", + "workbench.preferredHighContrastLightColorTheme": "Default High Contrast Light", + "workbench.preferredLightColorTheme": "Default Light Modern", + "workbench.productIconTheme": "Default", + "workbench.quickOpen.closeOnFocusLost": true, + "workbench.quickOpen.preserveInput": false, + "workbench.reduceMotion": "auto", + "workbench.remoteIndicator.showExtensionRecommendations": true, + "workbench.sash.hoverDelay": 300, + "workbench.sash.size": 4, + "workbench.settings.applyToAllProfiles": [], + "workbench.settings.editor": "ui", + "workbench.settings.enableNaturalLanguageSearch": false, + "workbench.settings.openDefaultKeybindings": false, + "workbench.settings.openDefaultSettings": false, + "workbench.settings.settingsSearchTocBehavior": "filter", + "workbench.settings.useSplitJSON": false, + "workbench.sideBar.location": "left", + "workbench.statusBar.visible": true, + "workbench.tips.enabled": true, + "workbench.tree.enableStickyScroll": true, + "workbench.tree.expandMode": "singleClick", + "workbench.tree.indent": 8, + "workbench.tree.renderIndentGuides": "onHover", + "workbench.tree.stickyScrollMaxItemCount": 7, + "workbench.trustedDomains.promptInTrustedWorkspace": false, + "workbench.view.alwaysShowHeaderActions": false, + "workbench.welcomePage.extraAnnouncements": true, + "workbench.welcomePage.preferReducedMotion": false, + "workbench.welcomePage.walkthroughs.openOnInstall": true, + "window.autoDetectColorScheme": false, + "window.autoDetectHighContrast": true, + "window.closeWhenEmpty": false, + "window.commandCenter": true, + "window.confirmBeforeClose": "never", + "window.confirmSaveUntitledWorkspace": true, + "window.customMenuBarAltFocus": true, + "window.customTitleBarVisibility": "never", + "window.dialogStyle": "native", + "window.doubleClickIconToClose": false, + "window.enableMenuBarMnemonics": true, + "window.menuBarVisibility": "classic", + "window.newWindowDimensions": "default", + "window.openFilesInNewWindow": "off", + "window.openFoldersInNewWindow": "default", + "window.openWithoutArgumentsInNewWindow": "on", + "window.restoreFullscreen": false, + "window.restoreWindows": "all", + "window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}${profileName}${separator}${appName}", + "window.titleBarStyle": "native", + "window.titleSeparator": " - ", + "window.zoomLevel": 0, + "window.zoomPerWindow": true, + "files.associations": {}, + "files.autoGuessEncoding": false, + "files.autoSave": "off", + "files.autoSaveDelay": 1000, + "files.autoSaveWhenNoErrors": false, + "files.autoSaveWorkspaceFilesOnly": false, + "files.defaultLanguage": "", + "files.dialog.defaultPath": "", + "files.enableTrash": true, + "files.encoding": "utf8", + "files.eol": "auto", + "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/CVS": true, "**/.DS_Store": true, "**/Thumbs.db": true}, + "files.hotExit": "onExit", + "files.insertFinalNewline": false, + "files.participants.timeout": 60000, + "files.readonlyExclude": {}, + "files.readonlyFromPermissions": false, + "files.readonlyInclude": {}, + "files.refactoring.autoSave": true, + "files.restoreUndoStack": true, + "files.saveConflictResolution": "askUser", + "files.simpleDialog.enable": false, + "files.trimFinalNewlines": false, + "files.trimTrailingWhitespace": false, + "files.trimTrailingWhitespaceInRegexAndStrings": true, + "files.watcherExclude": { "**/.git/objects/**": true, "**/.git/subtree-cache/**": true, "**/node_modules/*/**": true, "**/.hg/store/**": true}, + "files.watcherInclude": [], + "screencastMode.fontSize": 56, + "screencastMode.keyboardOptions": { "showKeys": true, "showKeybindings": true, "showCommands": true, "showCommandGroups": false, "showSingleEditorCursorMoves": true}, + "screencastMode.keyboardOverlayTimeout": 800, + "screencastMode.mouseIndicatorColor": "#FF0000", + "screencastMode.mouseIndicatorSize": 20, + "screencastMode.verticalOffset": 20, + "zenMode.centerLayout": true, + "zenMode.fullScreen": true, + "zenMode.hideActivityBar": true, + "zenMode.hideLineNumbers": true, + "zenMode.hideStatusBar": true, + "zenMode.restore": true, + "zenMode.showTabs": "multiple", + "zenMode.silentNotifications": true, + "explorer.autoReveal": true, + "explorer.autoRevealExclude": { "**/node_modules": true, "**/bower_components": true}, + "explorer.compactFolders": true, + "explorer.confirmPasteNative": true, + "explorer.confirmUndo": "default", + "explorer.copyRelativePathSeparator": "auto", + "explorer.decorations.badges": true, + "explorer.decorations.colors": true, + "explorer.enableDragAndDrop": true, + "explorer.enableUndo": true, + "explorer.excludeGitIgnore": false, + "explorer.expandSingleFolderWorkspaces": true, + "explorer.fileNesting.enabled": false, + "explorer.fileNesting.expand": true, + "explorer.fileNesting.patterns": { "*.ts": "${capture}.js", "*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts", "*.jsx": "${capture}.js", "*.tsx": "${capture}.ts", "tsconfig.json": "tsconfig.*.json", "package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb"}, + "explorer.incrementalNaming": "simple", + "explorer.openEditors.minVisible": 0, + "explorer.openEditors.sortOrder": "editorOrder", + "explorer.openEditors.visible": 9, + "explorer.sortOrder": "default", + "explorer.sortOrderLexicographicOptions": "default", + "search.actionsPosition": "right", + "search.collapseResults": "alwaysExpand", + "search.decorations.badges": true, + "search.decorations.colors": true, + "search.defaultViewMode": "list", + "search.exclude": { "**/node_modules": true, "**/bower_components": true, "**/*.code-search": true}, + "search.experimental.closedNotebookRichContentResults": false, + "search.followSymlinks": true, + "search.location": "sidebar", + "search.maintainFileSearchCache": false, + "search.maxResults": 20000, + "search.mode": "view", + "search.quickAccess.preserveInput": false, + "search.quickOpen.history.filterSortOrder": "default", + "search.quickOpen.includeHistory": true, + "search.quickOpen.includeSymbols": false, + "search.searchEditor.defaultNumberOfContextLines": 1, + "search.searchEditor.doubleClickBehaviour": "goToLocation", + "search.searchEditor.reusePriorSearchConfiguration": false, + "search.searchEditor.singleClickBehaviour": "default", + "search.searchOnType": true, + "search.searchOnTypeDebouncePeriod": 300, + "search.seedOnFocus": false, + "search.seedWithNearestWord": false, + "search.showLineNumbers": false, + "search.smartCase": false, + "search.sortOrder": "default", + "search.useGlobalIgnoreFiles": false, + "search.useIgnoreFiles": true, + "search.useParentIgnoreFiles": false, + "search.usePCRE2": false, + "search.useReplacePreview": true, + "search.useRipgrep": true, + "http.experimental.systemCertificatesV2": false, + "http.proxy": "", + "http.proxyAuthorization": null, + "http.proxyKerberosServicePrincipal": "", + "http.proxyStrictSSL": true, + "http.proxySupport": "override", + "http.systemCertificates": true, + "keyboard.dispatch": "code", + "update.channel": "default", + "update.mode": "default", + "update.showReleaseNotes": true, + "comments.collapseOnResolve": true, + "comments.maxHeight": true, + "comments.openPanel": "openOnSessionStartWithComments", + "comments.openView": "firstFile", + "comments.useRelativeTime": true, + "comments.visible": true, + "debug.allowBreakpointsEverywhere": false, + "debug.autoExpandLazyVariables": false, + "debug.closeReadonlyTabsOnEnd": false, + "debug.confirmOnExit": "never", + "debug.console.acceptSuggestionOnEnter": "off", + "debug.console.closeOnEnd": false, + "debug.console.collapseIdenticalLines": true, + "debug.console.fontFamily": "default", + "debug.console.fontSize": 14, + "debug.console.historySuggestions": true, + "debug.console.lineHeight": 0, + "debug.console.wordWrap": true, + "debug.disassemblyView.showSourceCode": true, + "debug.enableStatusBarColor": true, + "debug.focusEditorOnBreak": true, + "debug.focusWindowOnBreak": true, + "debug.gutterMiddleClickAction": "logpoint", + "debug.hideLauncherWhileDebugging": false, + "debug.inlineValues": "auto", + "debug.internalConsoleOptions": "openOnFirstSessionStart", + "debug.onTaskErrors": "prompt", + "debug.openDebug": "openOnDebugBreak", + "debug.openExplorerOnEnd": false, + "debug.saveBeforeStart": "allEditorsInActiveGroup", + "debug.showBreakpointsInOverviewRuler": false, + "debug.showInlineBreakpointCandidates": true, + "debug.showInStatusBar": "onFirstSessionStart", + "debug.showSubSessionsInToolBar": false, + "debug.terminal.clearBeforeReusing": false, + "debug.toolBarLocation": "floating", + "launch": { "configurations": [], "compounds": []}, + "html.autoClosingTags": true, + "html.autoCreateQuotes": true, + "html.completion.attributeDefaultValue": "doublequotes", + "html.customData": [], + "html.format.contentUnformatted": "pre,code,textarea", + "html.format.enable": true, + "html.format.extraLiners": "head, body, /html", + "html.format.indentHandlebars": false, + "html.format.indentInnerHtml": false, + "html.format.maxPreserveNewLines": null, + "html.format.preserveNewLines": true, + "html.format.templating": false, + "html.format.unformatted": "wbr", + "html.format.unformattedContentDelimiter": "", + "html.format.wrapAttributes": "auto", + "html.format.wrapAttributesIndentSize": null, + "html.format.wrapLineLength": 120, + "html.hover.documentation": true, + "html.hover.references": true, + "html.mirrorCursorOnMatchingTag": false, + "html.suggest.html5": true, + "html.trace.server": "off", + "html.validate.scripts": true, + "html.validate.styles": true, + "json.colorDecorators.enable": true, + "json.format.enable": true, + "json.format.keepLines": false, + "json.maxItemsComputed": 5000, + "json.schemaDownload.enable": true, + "json.schemas": [], + "json.trace.server": "off", + "json.validate.enable": true, + "markdown.copyFiles.destination": {}, + "markdown.copyFiles.overwriteBehavior": "nameIncrementally", + "markdown.editor.drop.copyIntoWorkspace": "mediaFiles", + "markdown.editor.drop.enabled": "smart", + "markdown.editor.filePaste.audioSnippet": "", + "markdown.editor.filePaste.copyIntoWorkspace": "mediaFiles", + "markdown.editor.filePaste.enabled": "smart", + "markdown.editor.filePaste.videoSnippet": "", + "markdown.editor.pasteUrlAsFormattedLink.enabled": "smartWithSelection", + "markdown.experimental.updateLinksOnPaste": false, + "markdown.links.openLocation": "currentGroup", + "markdown.occurrencesHighlight.enabled": false, + "markdown.preferredMdPathExtensionStyle": "auto", + "markdown.preview.breaks": false, + "markdown.preview.doubleClickToSwitchToEditor": true, + "markdown.preview.fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif", + "markdown.preview.fontSize": 14, + "markdown.preview.lineHeight": 1.6, + "markdown.preview.linkify": true, + "markdown.preview.markEditorSelection": true, + "markdown.preview.openMarkdownLinks": "inPreview", + "markdown.preview.scrollEditorWithPreview": true, + "markdown.preview.scrollPreviewWithEditor": true, + "markdown.preview.typographer": false, + "markdown.server.log": "off", + "markdown.styles": [], + "markdown.suggest.paths.enabled": true, + "markdown.suggest.paths.includeWorkspaceHeaderCompletions": "onDoubleHash", + "markdown.trace.extension": "off", + "markdown.trace.server": "off", + "markdown.updateLinksOnFileMove.enabled": "never", + "markdown.updateLinksOnFileMove.enableForDirectories": true, + "markdown.updateLinksOnFileMove.include": [ "**/*.{md,mkd,mdwn,mdown,markdown,markdn,mdtxt,mdtext,workbook}", "**/*.{jpg,jpe,jpeg,png,bmp,gif,ico,webp,avif,tiff,svg,mp4}"], + "markdown.validate.duplicateLinkDefinitions.enabled": "warning", + "markdown.validate.enabled": false, + "markdown.validate.fileLinks.enabled": "warning", + "markdown.validate.fileLinks.markdownFragmentLinks": "inherit", + "markdown.validate.fragmentLinks.enabled": "warning", + "markdown.validate.ignoredLinks": [], + "markdown.validate.referenceLinks.enabled": "warning", + "markdown.validate.unusedLinkDefinitions.enabled": "hint", + "php.suggest.basic": true, + "php.validate.enable": true, + "php.validate.executablePath": null, + "php.validate.run": "onSave", + "javascript.autoClosingTags": true, + "javascript.format.enable": true, + "javascript.format.insertSpaceAfterCommaDelimiter": true, + "javascript.format.insertSpaceAfterConstructor": false, + "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true, + "javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true, + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true, + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false, + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true, + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false, + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, + "javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false, + "javascript.format.insertSpaceAfterSemicolonInForStatements": true, + "javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true, + "javascript.format.insertSpaceBeforeFunctionParenthesis": false, + "javascript.format.placeOpenBraceOnNewLineForControlBlocks": false, + "javascript.format.placeOpenBraceOnNewLineForFunctions": false, + "javascript.format.semicolons": "ignore", + "javascript.implicitProjectConfig.checkJs": false, + "javascript.implicitProjectConfig.experimentalDecorators": false, + "javascript.inlayHints.enumMemberValues.enabled": false, + "javascript.inlayHints.functionLikeReturnTypes.enabled": false, + "javascript.inlayHints.parameterNames.enabled": "none", + "javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true, + "javascript.inlayHints.parameterTypes.enabled": false, + "javascript.inlayHints.propertyDeclarationTypes.enabled": false, + "javascript.inlayHints.variableTypes.enabled": false, + "javascript.inlayHints.variableTypes.suppressWhenTypeMatchesName": true, + "javascript.preferences.autoImportFileExcludePatterns": [], + "javascript.preferences.importModuleSpecifier": "shortest", + "javascript.preferences.importModuleSpecifierEnding": "auto", + "javascript.preferences.jsxAttributeCompletionStyle": "auto", + "javascript.preferences.quoteStyle": "auto", + "javascript.preferences.renameMatchingJsxTags": true, + "javascript.preferences.renameShorthandProperties": true, + "javascript.preferences.useAliasesForRenames": true, + "javascript.preferGoToSourceDefinition": false, + "javascript.referencesCodeLens.enabled": false, + "javascript.referencesCodeLens.showOnAllFunctions": false, + "javascript.suggest.autoImports": true, + "javascript.suggest.classMemberSnippets.enabled": true, + "javascript.suggest.completeFunctionCalls": false, + "javascript.suggest.completeJSDocs": true, + "javascript.suggest.enabled": true, + "javascript.suggest.includeAutomaticOptionalChainCompletions": true, + "javascript.suggest.includeCompletionsForImportStatements": true, + "javascript.suggest.jsdoc.generateReturns": true, + "javascript.suggest.names": true, + "javascript.suggest.paths": true, + "javascript.suggestionActions.enabled": true, + "javascript.updateImportsOnFileMove.enabled": "prompt", + "javascript.validate.enable": true, + "js/ts.implicitProjectConfig.checkJs": false, + "js/ts.implicitProjectConfig.experimentalDecorators": false, + "js/ts.implicitProjectConfig.module": "ESNext", + "js/ts.implicitProjectConfig.strictFunctionTypes": true, + "js/ts.implicitProjectConfig.strictNullChecks": true, + "js/ts.implicitProjectConfig.target": "ES2020", + "typescript.autoClosingTags": true, + "typescript.check.npmIsInstalled": true, + "typescript.disableAutomaticTypeAcquisition": false, + "typescript.enablePromptUseWorkspaceTsdk": false, + "typescript.experimental.tsserver.web.typeAcquisition.enabled": false, + "typescript.format.enable": true, + "typescript.format.indentSwitchCase": true, + "typescript.format.insertSpaceAfterCommaDelimiter": true, + "typescript.format.insertSpaceAfterConstructor": false, + "typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true, + "typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, + "typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false, + "typescript.format.insertSpaceAfterSemicolonInForStatements": true, + "typescript.format.insertSpaceAfterTypeAssertion": false, + "typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true, + "typescript.format.insertSpaceBeforeFunctionParenthesis": false, + "typescript.format.placeOpenBraceOnNewLineForControlBlocks": false, + "typescript.format.placeOpenBraceOnNewLineForFunctions": false, + "typescript.format.semicolons": "ignore", + "typescript.implementationsCodeLens.enabled": false, + "typescript.implementationsCodeLens.showOnInterfaceMethods": false, + "typescript.inlayHints.enumMemberValues.enabled": false, + "typescript.inlayHints.functionLikeReturnTypes.enabled": false, + "typescript.inlayHints.parameterNames.enabled": "none", + "typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true, + "typescript.inlayHints.parameterTypes.enabled": false, + "typescript.inlayHints.propertyDeclarationTypes.enabled": false, + "typescript.inlayHints.variableTypes.enabled": false, + "typescript.inlayHints.variableTypes.suppressWhenTypeMatchesName": true, + "typescript.locale": "auto", + "typescript.npm": "", + "typescript.preferences.autoImportFileExcludePatterns": [], + "typescript.preferences.importModuleSpecifier": "shortest", + "typescript.preferences.importModuleSpecifierEnding": "auto", + "typescript.preferences.includePackageJsonAutoImports": "auto", + "typescript.preferences.jsxAttributeCompletionStyle": "auto", + "typescript.preferences.preferTypeOnlyAutoImports": false, + "typescript.preferences.quoteStyle": "auto", + "typescript.preferences.renameMatchingJsxTags": true, + "typescript.preferences.renameShorthandProperties": true, + "typescript.preferences.useAliasesForRenames": true, + "typescript.preferGoToSourceDefinition": false, + "typescript.referencesCodeLens.enabled": false, + "typescript.referencesCodeLens.showOnAllFunctions": false, + "typescript.reportStyleChecksAsWarnings": true, + "typescript.suggest.autoImports": true, + "typescript.suggest.classMemberSnippets.enabled": true, + "typescript.suggest.completeFunctionCalls": false, + "typescript.suggest.completeJSDocs": true, + "typescript.suggest.enabled": true, + "typescript.suggest.includeAutomaticOptionalChainCompletions": true, + "typescript.suggest.includeCompletionsForImportStatements": true, + "typescript.suggest.jsdoc.generateReturns": true, + "typescript.suggest.objectLiteralMethodSnippets.enabled": true, + "typescript.suggest.paths": true, + "typescript.suggestionActions.enabled": true, + "typescript.surveys.enabled": true, + "typescript.tsc.autoDetect": "on", + "typescript.tsdk": "", + "typescript.tsserver.enableTracing": false, + "typescript.tsserver.experimental.enableProjectDiagnostics": false, + "typescript.tsserver.experimental.useVsCodeWatcher": false, + "typescript.tsserver.log": "off", + "typescript.tsserver.maxTsServerMemory": 3072, + "typescript.tsserver.nodePath": "", + "typescript.tsserver.pluginPaths": [], + "typescript.tsserver.useSeparateSyntaxServer": true, + "typescript.tsserver.useSyntaxServer": "auto", + "typescript.tsserver.watchOptions": {}, + "typescript.tsserver.web.projectWideIntellisense.enabled": true, + "typescript.tsserver.web.projectWideIntellisense.suppressSemanticErrors": true, + "typescript.updateImportsOnFileMove.enabled": "prompt", + "typescript.validate.enable": true, + "typescript.workspaceSymbols.excludeLibrarySymbols": true, + "typescript.workspaceSymbols.scope": "allOpenProjects", + "testing.alwaysRevealTestOnStateChange": false, + "testing.automaticallyOpenPeekView": "failureInVisibleDocument", + "testing.automaticallyOpenPeekViewDuringAutoRun": false, + "testing.autoRun.delay": 1000, + "testing.countBadge": "failed", + "testing.coverageBarThresholds": { "red": 0, "yellow": 60, "green": 90}, + "testing.defaultGutterClickAction": "run", + "testing.displayedCoveragePercent": "totalCoverage", + "testing.followRunningTest": true, + "testing.gutterEnabled": true, + "testing.openTesting": "openOnTestStart", + "testing.saveBeforeTest": true, + "testing.showAllMessages": false, + "testing.showCoverageInExplorer": true, + "css.completion.completePropertyWithSemicolon": true, + "css.completion.triggerPropertyValueCompletion": true, + "css.customData": [], + "css.format.braceStyle": "collapse", + "css.format.enable": true, + "css.format.maxPreserveNewLines": null, + "css.format.newlineBetweenRules": true, + "css.format.newlineBetweenSelectors": true, + "css.format.preserveNewLines": true, + "css.format.spaceAroundSelectorSeparator": false, + "css.hover.documentation": true, + "css.hover.references": true, + "css.lint.argumentsInColorFunction": "error", + "css.lint.boxModel": "ignore", + "css.lint.compatibleVendorPrefixes": "ignore", + "css.lint.duplicateProperties": "ignore", + "css.lint.emptyRules": "warning", + "css.lint.float": "ignore", + "css.lint.fontFaceProperties": "warning", + "css.lint.hexColorLength": "error", + "css.lint.idSelector": "ignore", + "css.lint.ieHack": "ignore", + "css.lint.important": "ignore", + "css.lint.importStatement": "ignore", + "css.lint.propertyIgnoredDueToDisplay": "warning", + "css.lint.universalSelector": "ignore", + "css.lint.unknownAtRules": "warning", + "css.lint.unknownProperties": "warning", + "css.lint.unknownVendorSpecificProperties": "ignore", + "css.lint.validProperties": [], + "css.lint.vendorPrefix": "warning", + "css.lint.zeroUnits": "ignore", + "css.trace.server": "off", + "css.validate": true, + "less.completion.completePropertyWithSemicolon": true, + "less.completion.triggerPropertyValueCompletion": true, + "less.format.braceStyle": "collapse", + "less.format.enable": true, + "less.format.maxPreserveNewLines": null, + "less.format.newlineBetweenRules": true, + "less.format.newlineBetweenSelectors": true, + "less.format.preserveNewLines": true, + "less.format.spaceAroundSelectorSeparator": false, + "less.hover.documentation": true, + "less.hover.references": true, + "less.lint.argumentsInColorFunction": "error", + "less.lint.boxModel": "ignore", + "less.lint.compatibleVendorPrefixes": "ignore", + "less.lint.duplicateProperties": "ignore", + "less.lint.emptyRules": "warning", + "less.lint.float": "ignore", + "less.lint.fontFaceProperties": "warning", + "less.lint.hexColorLength": "error", + "less.lint.idSelector": "ignore", + "less.lint.ieHack": "ignore", + "less.lint.important": "ignore", + "less.lint.importStatement": "ignore", + "less.lint.propertyIgnoredDueToDisplay": "warning", + "less.lint.universalSelector": "ignore", + "less.lint.unknownAtRules": "warning", + "less.lint.unknownProperties": "warning", + "less.lint.unknownVendorSpecificProperties": "ignore", + "less.lint.validProperties": [], + "less.lint.vendorPrefix": "warning", + "less.lint.zeroUnits": "ignore", + "less.validate": true, + "scss.completion.completePropertyWithSemicolon": true, + "scss.completion.triggerPropertyValueCompletion": true, + "scss.format.braceStyle": "collapse", + "scss.format.enable": true, + "scss.format.maxPreserveNewLines": null, + "scss.format.newlineBetweenRules": true, + "scss.format.newlineBetweenSelectors": true, + "scss.format.preserveNewLines": true, + "scss.format.spaceAroundSelectorSeparator": false, + "scss.hover.documentation": true, + "scss.hover.references": true, + "scss.lint.argumentsInColorFunction": "error", + "scss.lint.boxModel": "ignore", + "scss.lint.compatibleVendorPrefixes": "ignore", + "scss.lint.duplicateProperties": "ignore", + "scss.lint.emptyRules": "warning", + "scss.lint.float": "ignore", + "scss.lint.fontFaceProperties": "warning", + "scss.lint.hexColorLength": "error", + "scss.lint.idSelector": "ignore", + "scss.lint.ieHack": "ignore", + "scss.lint.important": "ignore", + "scss.lint.importStatement": "ignore", + "scss.lint.propertyIgnoredDueToDisplay": "warning", + "scss.lint.universalSelector": "ignore", + "scss.lint.unknownAtRules": "warning", + "scss.lint.unknownProperties": "warning", + "scss.lint.unknownVendorSpecificProperties": "ignore", + "scss.lint.validProperties": [], + "scss.lint.vendorPrefix": "warning", + "scss.lint.zeroUnits": "ignore", + "scss.validate": true, + "extensions.autoCheckUpdates": true, + "extensions.autoUpdate": true, + "extensions.closeExtensionDetailsOnViewChange": false, + "extensions.confirmedUriHandlerExtensionIds": [], + "extensions.experimental.affinity": {}, + "extensions.experimental.deferredStartupFinishedActivation": false, + "extensions.experimental.issueQuickAccess": true, + "extensions.ignoreRecommendations": false, + "extensions.showRecommendationsOnlyOnDemand": false, + "extensions.supportUntrustedWorkspaces": {}, + "extensions.supportVirtualWorkspaces": {}, + "extensions.webWorker": "auto", + "output.smartScroll.enabled": true, + "interactiveWindow.collapseCellInputCode": "fromEditor", + "notebook.backup.sizeLimit": 10000, + "notebook.breadcrumbs.showCodeCells": true, + "notebook.cellFailureDiagnostics": true, + "notebook.cellFocusIndicator": "gutter", + "notebook.cellToolbarLocation": { "default": "right"}, + "notebook.cellToolbarVisibility": "click", + "notebook.codeActionsOnSave": {}, + "notebook.compactView": true, + "notebook.confirmDeleteRunningCell": true, + "notebook.consolidatedOutputButton": true, + "notebook.consolidatedRunButton": false, + "notebook.diff.enablePreview": true, + "notebook.diff.ignoreMetadata": false, + "notebook.diff.ignoreOutputs": false, + "notebook.diff.overviewRuler": false, + "notebook.displayOrder": [], + "notebook.dragAndDropEnabled": true, + "notebook.editorOptionsCustomizations": {}, + "notebook.experimental.cellChat": false, + "notebook.experimental.generate": false, + "notebook.experimental.remoteSave": false, + "notebook.experimental.variablesView": false, + "notebook.find.scope": { "markupSource": true, "markupPreview": true, "codeSource": true, "codeOutput": true}, + "notebook.formatOnCellExecution": false, + "notebook.formatOnSave.enabled": false, + "notebook.globalToolbar": true, + "notebook.globalToolbarShowLabel": "always", + "notebook.gotoSymbols.showAllSymbols": true, + "notebook.insertFinalNewline": false, + "notebook.insertToolbarLocation": "both", + "notebook.lineNumbers": "off", + "notebook.markup.fontSize": 0, + "notebook.navigation.allowNavigateToSurroundingCells": true, + "notebook.outline.showCodeCells": false, + "notebook.outline.showCodeCellSymbols": true, + "notebook.outline.showMarkdownHeadersOnly": true, + "notebook.output.fontFamily": "", + "notebook.output.fontSize": 0, + "notebook.output.lineHeight": 0, + "notebook.output.linkifyFilePaths": true, + "notebook.output.minimalErrorRendering": false, + "notebook.output.scrolling": false, + "notebook.output.textLineLimit": 30, + "notebook.output.wordWrap": false, + "notebook.scrolling.revealNextCellOnExecute": "fullCell", + "notebook.showCellStatusBar": "visible", + "notebook.showFoldingControls": "mouseover", + "notebook.stickyScroll.enabled": false, + "notebook.stickyScroll.mode": "indented", + "notebook.undoRedoPerCell": true, + "interactiveWindow.alwaysScrollOnNewCell": true, + "interactiveWindow.promptToSaveOnClose": false, + "application.experimental.rendererProfiling": false, + "application.shellEnvironmentResolutionTimeout": 10, + "workbench.accounts.experimental.showEntitlements": false, + "workbench.chat.experimental.showWelcomeView": false, + "terminal.explorerKind": "integrated", + "terminal.external.linuxExec": "dumb", + "terminal.external.osxExec": "Terminal.app", + "terminal.external.windowsExec": "C:\\Windows\\System32\\cmd.exe", + "terminal.sourceControlRepositoriesKind": "integrated", + "terminal.integrated.accessibleViewFocusOnCommandExecution": false, + "terminal.integrated.accessibleViewPreserveCursorPosition": false, + "terminal.integrated.allowChords": true, + "terminal.integrated.allowedLinkSchemes": [ "file", "http", "https", "mailto", "vscode", "vscode-insiders"], + "terminal.integrated.allowMnemonics": false, + "terminal.integrated.altClickMovesCursor": true, + "terminal.integrated.automationProfile.linux": null, + "terminal.integrated.automationProfile.osx": null, + "terminal.integrated.automationProfile.windows": null, + "terminal.integrated.autoReplies": {}, + "terminal.integrated.bellDuration": 1000, + "terminal.integrated.commandsToSkipShell": [], + "terminal.integrated.confirmOnExit": "never", + "terminal.integrated.confirmOnKill": "editor", + "terminal.integrated.copyOnSelection": false, + "terminal.integrated.cursorBlinking": false, + "terminal.integrated.cursorStyle": "block", + "terminal.integrated.cursorStyleInactive": "outline", + "terminal.integrated.cursorWidth": 1, + "terminal.integrated.customGlyphs": true, + "terminal.integrated.cwd": "", + "terminal.integrated.defaultLocation": "view", + "terminal.integrated.defaultProfile.osx": null, + "terminal.integrated.defaultProfile.windows": null, + "terminal.integrated.detectLocale": "auto", + "terminal.integrated.drawBoldTextInBrightColors": true, + "terminal.integrated.enableBell": false, + "terminal.integrated.enableFileLinks": "on", + "terminal.integrated.enableImages": false, + "terminal.integrated.enableMultiLinePasteWarning": "auto", + "terminal.integrated.enablePersistentSessions": true, + "terminal.integrated.enableVisualBell": false, + "terminal.integrated.env.linux": {}, + "terminal.integrated.env.osx": {}, + "terminal.integrated.env.windows": {}, + "terminal.integrated.environmentChangesIndicator": "warnonly", + "terminal.integrated.environmentChangesRelaunch": true, + "terminal.integrated.fastScrollSensitivity": 5, + "terminal.integrated.focusAfterRun": "none", + "terminal.integrated.fontFamily": "", + "terminal.integrated.fontSize": 14, + "terminal.integrated.fontWeight": "normal", + "terminal.integrated.fontWeightBold": "bold", + "terminal.integrated.gpuAcceleration": "auto", + "terminal.integrated.hideOnStartup": "never", + "terminal.integrated.ignoreBracketedPasteMode": false, + "terminal.integrated.ignoreProcessNames": [ "starship", "oh-my-posh", "bash", "zsh"], + "terminal.integrated.inheritEnv": true, + "terminal.integrated.letterSpacing": 0, + "terminal.integrated.lineHeight": 1, + "terminal.integrated.localEchoEnabled": "auto", + "terminal.integrated.localEchoExcludePrograms": [ "vim", "vi", "nano", "tmux"], + "terminal.integrated.localEchoLatencyThreshold": 30, + "terminal.integrated.localEchoStyle": "dim", + "terminal.integrated.macOptionClickForcesSelection": false, + "terminal.integrated.macOptionIsMeta": false, + "terminal.integrated.middleClickBehavior": "default", + "terminal.integrated.minimumContrastRatio": 4.5, + "terminal.integrated.mouseWheelScrollSensitivity": 1, + "terminal.integrated.mouseWheelZoom": false, + "terminal.integrated.persistentSessionReviveProcess": "onExit", + "terminal.integrated.persistentSessionScrollback": 100, + "terminal.integrated.profiles.linux": { "bash": { "path": "bash", "icon": "terminal-bash" }, "zsh": { "path": "zsh" }, "fish": { "path": "fish" }, "tmux": { "path": "tmux", "icon": "terminal-tmux" }, "pwsh": { "path": "pwsh", "icon": "terminal-powershell" }}, + "terminal.integrated.profiles.osx": { "bash": { "path": "bash", "args": [ "-l" ], "icon": "terminal-bash" }, "zsh": { "path": "zsh", "args": [ "-l" ] }, "fish": { "path": "fish", "args": [ "-l" ] }, "tmux": { "path": "tmux", "icon": "terminal-tmux" }, "pwsh": { "path": "pwsh", "icon": "terminal-powershell" }}, + "terminal.integrated.profiles.windows": { "PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, "Command Prompt": { "path": [ "${env:windir}\\Sysnative\\cmd.exe", "${env:windir}\\System32\\cmd.exe" ], "args": [], "icon": "terminal-cmd" }, "Git Bash": { "source": "Git Bash" }}, + "terminal.integrated.rescaleOverlappingGlyphs": false, + "terminal.integrated.rightClickBehavior": "default", + "terminal.integrated.scrollback": 1000, + "terminal.integrated.sendKeybindingsToShell": false, + "terminal.integrated.shellIntegration.decorationsEnabled": "both", + "terminal.integrated.shellIntegration.enabled": true, + "terminal.integrated.shellIntegration.history": 100, + "terminal.integrated.shellIntegration.suggestEnabled": false, + "terminal.integrated.showExitAlert": true, + "terminal.integrated.showLinkHover": true, + "terminal.integrated.smoothScrolling": false, + "terminal.integrated.splitCwd": "inherited", + "terminal.integrated.stickyScroll.enabled": false, + "terminal.integrated.stickyScroll.maxLineCount": 5, + "terminal.integrated.tabs.defaultColor": null, + "terminal.integrated.tabs.defaultIcon": "terminal", + "terminal.integrated.tabs.description": "${task}${separator}${local}${separator}${cwdFolder}", + "terminal.integrated.tabs.enableAnimation": true, + "terminal.integrated.tabs.enabled": true, + "terminal.integrated.tabs.focusMode": "doubleClick", + "terminal.integrated.tabs.hideCondition": "singleTerminal", + "terminal.integrated.tabs.location": "right", + "terminal.integrated.tabs.separator": " - ", + "terminal.integrated.tabs.showActions": "singleTerminalOrNarrow", + "terminal.integrated.tabs.showActiveTerminal": "singleTerminalOrNarrow", + "terminal.integrated.tabs.title": "${process}", + "terminal.integrated.tabStopWidth": 8, + "terminal.integrated.unicodeVersion": "11", + "terminal.integrated.useWslProfiles": true, + "terminal.integrated.windowsEnableConpty": true, + "terminal.integrated.wordSeparators": " ()[]{}',\"`─‘’“”|", + "task.allowAutomaticTasks": "on", + "task.autoDetect": "on", + "task.problemMatchers.neverPrompt": false, + "task.quickOpen.detail": true, + "task.quickOpen.history": 30, + "task.quickOpen.showAll": false, + "task.quickOpen.skip": false, + "task.reconnection": true, + "task.saveBeforeRun": "always", + "task.slowProviderWarning": true, + "task.verboseLogging": false, + "problems.autoReveal": true, + "problems.decorations.enabled": true, + "problems.defaultViewMode": "tree", + "problems.showCurrentInStatus": false, + "problems.sortOrder": "severity", + "problems.visibility": true, + "breadcrumbs.enabled": true, + "breadcrumbs.filePath": "on", + "breadcrumbs.icons": true, + "breadcrumbs.showArrays": true, + "breadcrumbs.showBooleans": true, + "breadcrumbs.showClasses": true, + "breadcrumbs.showConstants": true, + "breadcrumbs.showConstructors": true, + "breadcrumbs.showEnumMembers": true, + "breadcrumbs.showEnums": true, + "breadcrumbs.showEvents": true, + "breadcrumbs.showFields": true, + "breadcrumbs.showFiles": true, + "breadcrumbs.showFunctions": true, + "breadcrumbs.showInterfaces": true, + "breadcrumbs.showKeys": true, + "breadcrumbs.showMethods": true, + "breadcrumbs.showModules": true, + "breadcrumbs.showNamespaces": true, + "breadcrumbs.showNull": true, + "breadcrumbs.showNumbers": true, + "breadcrumbs.showObjects": true, + "breadcrumbs.showOperators": true, + "breadcrumbs.showPackages": true, + "breadcrumbs.showProperties": true, + "breadcrumbs.showStrings": true, + "breadcrumbs.showStructs": true, + "breadcrumbs.showTypeParameters": true, + "breadcrumbs.showVariables": true, + "breadcrumbs.symbolPath": "on", + "breadcrumbs.symbolSortOrder": "position", + "outline.collapseItems": "alwaysExpand", + "outline.icons": true, + "outline.problems.badges": true, + "outline.problems.colors": true, + "outline.problems.enabled": true, + "outline.showArrays": true, + "outline.showBooleans": true, + "outline.showClasses": true, + "outline.showConstants": true, + "outline.showConstructors": true, + "outline.showEnumMembers": true, + "outline.showEnums": true, + "outline.showEvents": true, + "outline.showFields": true, + "outline.showFiles": true, + "outline.showFunctions": true, + "outline.showInterfaces": true, + "outline.showKeys": true, + "outline.showMethods": true, + "outline.showModules": true, + "outline.showNamespaces": true, + "outline.showNull": true, + "outline.showNumbers": true, + "outline.showObjects": true, + "outline.showOperators": true, + "outline.showPackages": true, + "outline.showProperties": true, + "outline.showStrings": true, + "outline.showStructs": true, + "outline.showTypeParameters": true, + "outline.showVariables": true, + "timeline.pageOnScroll": false, + "timeline.pageSize": null, + "[clojure]": { "diffEditor.ignoreTrimWhitespace": false}, + "[coffeescript]": { "diffEditor.ignoreTrimWhitespace": false}, + "[csharp]": { "editor.maxTokenizationLineLength": 2500}, + "[css]": { "editor.suggest.insertMode": "replace"}, + "[dockercompose]": { "editor.insertSpaces": true, "editor.tabSize": 2, "editor.autoIndent": "advanced"}, + "[dockerfile]": { "editor.quickSuggestions": { "strings": true }}, + "[fsharp]": { "diffEditor.ignoreTrimWhitespace": false}, + "[git-commit]": { "editor.rulers": [ 50, 72 ], "editor.wordWrap": "off", "workbench.editor.restoreViewState": false}, + "[git-rebase]": { "workbench.editor.restoreViewState": false}, + "[go]": { "editor.insertSpaces": false}, + "[handlebars]": { "editor.suggest.insertMode": "replace"}, + "[html]": { "editor.suggest.insertMode": "replace"}, + "[jade]": { "diffEditor.ignoreTrimWhitespace": false}, + "[javascript]": { "editor.maxTokenizationLineLength": 2500}, + "[json]": { "editor.quickSuggestions": { "strings": true }, "editor.suggest.insertMode": "replace"}, + "[jsonc]": { "editor.quickSuggestions": { "strings": true }, "editor.suggest.insertMode": "replace"}, + "[less]": { "editor.suggest.insertMode": "replace"}, + "[makefile]": { "editor.insertSpaces": false}, + "[markdown]": { "editor.unicodeHighlight.ambiguousCharacters": false, "editor.unicodeHighlight.invisibleCharacters": false, "diffEditor.ignoreTrimWhitespace": false, "editor.wordWrap": "on", "editor.quickSuggestions": { "comments": "off", "strings": "off", "other": "off" }}, + "[plaintext]": { "editor.unicodeHighlight.ambiguousCharacters": false, "editor.unicodeHighlight.invisibleCharacters": false}, + "[python]": { "diffEditor.ignoreTrimWhitespace": false}, + "[scss]": { "editor.suggest.insertMode": "replace"}, + "[search-result]": { "editor.lineNumbers": "off"}, + "[shellscript]": { "files.eol": "\n"}, + "[yaml]": { "editor.insertSpaces": true, "editor.tabSize": 2, "editor.autoIndent": "advanced", "diffEditor.ignoreTrimWhitespace": false}, + "remote.tunnels.access.hostNameOverride": "", + "remote.tunnels.access.preventSleep": false, + "remote.autoForwardPorts": true, + "remote.autoForwardPortsFallback": 20, + "remote.autoForwardPortsSource": "process", + "remote.downloadExtensionsLocally": false, + "remote.extensionKind": { "pub.name": [ "ui" ]}, + "remote.forwardOnOpen": true, + "remote.localPortHost": "localhost", + "remote.otherPortsAttributes": {}, + "remote.portsAttributes": { "443": { "protocol": "https" }, "8443": { "protocol": "https" }}, + "remote.restoreForwardedPorts": true, + "accessibility.accessibleView.closeOnKeyPress": true, + "accessibility.alert.breakpoint": true, + "accessibility.alert.chatRequestSent": true, + "accessibility.alert.chatResponseProgress": true, + "accessibility.alert.clear": true, + "accessibility.alert.error": true, + "accessibility.alert.foldedArea": true, + "accessibility.alert.format": "always", + "accessibility.alert.lineHasBreakpoint": true, + "accessibility.alert.noInlayHints": true, + "accessibility.alert.notebookCellCompleted": true, + "accessibility.alert.notebookCellFailed": true, + "accessibility.alert.onDebugBreak": true, + "accessibility.alert.save": "always", + "accessibility.alert.taskCompleted": true, + "accessibility.alert.taskFailed": true, + "accessibility.alert.terminalBell": true, + "accessibility.alert.terminalCommandFailed": true, + "accessibility.alert.terminalQuickFix": true, + "accessibility.alert.warning": true, + "accessibility.signals.chatRequestSent": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.chatResponseReceived": { "sound": "auto"}, + "accessibility.signals.clear": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.debouncePositionChanges": false, + "accessibility.signals.diffLineDeleted": { "sound": "auto"}, + "accessibility.signals.diffLineInserted": { "sound": "auto"}, + "accessibility.signals.diffLineModified": { "sound": "auto"}, + "accessibility.signals.format": { "sound": "never", "announcement": "never"}, + "accessibility.signals.lineHasBreakpoint": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.lineHasError": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.lineHasFoldedArea": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.lineHasInlineSuggestion": { "sound": "auto"}, + "accessibility.signals.lineHasWarning": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.noInlayHints": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.notebookCellCompleted": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.notebookCellFailed": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.onDebugBreak": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.positionHasError": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.positionHasWarning": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.progress": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.save": { "sound": "never", "announcement": "never"}, + "accessibility.signals.sounds.volume": 70, + "accessibility.signals.taskCompleted": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.taskFailed": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.terminalBell": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.terminalCommandFailed": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.terminalQuickFix": { "sound": "auto", "announcement": "auto"}, + "accessibility.signals.voiceRecordingStarted": { "sound": "on"}, + "accessibility.signals.voiceRecordingStopped": { "sound": "auto"}, + "accessibility.verbosity.comments": true, + "accessibility.verbosity.diffEditor": true, + "accessibility.verbosity.diffEditorActive": true, + "accessibility.verbosity.emptyEditorHint": true, + "accessibility.verbosity.hover": true, + "accessibility.verbosity.inlineChat": true, + "accessibility.verbosity.inlineCompletions": true, + "accessibility.verbosity.keybindingsEditor": true, + "accessibility.verbosity.notebook": true, + "accessibility.verbosity.notification": true, + "accessibility.verbosity.panelChat": true, + "accessibility.verbosity.terminal": true, + "audioCues.chatRequestSent": "off", + "audioCues.chatResponsePending": "auto", + "audioCues.chatResponseReceived": "off", + "audioCues.clear": "off", + "audioCues.debouncePositionChanges": false, + "audioCues.diffLineDeleted": "auto", + "audioCues.diffLineInserted": "auto", + "audioCues.diffLineModified": "auto", + "audioCues.enabled": null, + "audioCues.format": "never", + "audioCues.lineHasBreakpoint": "auto", + "audioCues.lineHasError": "auto", + "audioCues.lineHasFoldedArea": "auto", + "audioCues.lineHasInlineSuggestion": "auto", + "audioCues.lineHasWarning": "off", + "audioCues.noInlayHints": "auto", + "audioCues.notebookCellCompleted": "auto", + "audioCues.notebookCellFailed": "auto", + "audioCues.onDebugBreak": "auto", + "audioCues.save": "never", + "audioCues.taskCompleted": "auto", + "audioCues.taskFailed": "auto", + "audioCues.terminalBell": "on", + "audioCues.terminalCommandFailed": "auto", + "audioCues.terminalQuickFix": "auto", + "audioCues.volume": null, + "mergeEditor.diffAlgorithm": "advanced", + "mergeEditor.showDeletionMarkers": true, + "multiDiffEditor.experimental.enabled": true, + "chat.editor.fontFamily": "default", + "chat.editor.fontSize": 14, + "chat.editor.fontWeight": "default", + "chat.editor.lineHeight": 0, + "chat.editor.wordWrap": "off", + "chat.experimental.implicitContext": false, + "emmet.excludeLanguages": [ "markdown"], + "emmet.extensionsPath": [], + "emmet.includeLanguages": {}, + "emmet.optimizeStylesheetParsing": true, + "emmet.preferences": {}, + "emmet.showAbbreviationSuggestions": true, + "emmet.showExpandedAbbreviation": "always", + "emmet.showSuggestionsAsSnippets": false, + "emmet.syntaxProfiles": {}, + "emmet.triggerExpansionOnTab": false, + "emmet.useInlineCompletions": false, + "emmet.variables": {}, + "git.allowForcePush": false, + "git.allowNoVerifyCommit": false, + "git.alwaysShowStagedChangesResourceGroup": false, + "git.alwaysSignOff": false, + "git.autofetchPeriod": 180, + "git.autorefresh": true, + "git.autoRepositoryDetection": true, + "git.autoStash": false, + "git.branchPrefix": "", + "git.branchProtection": [], + "git.branchProtectionPrompt": "alwaysPrompt", + "git.branchRandomName.dictionary": [ "adjectives", "animals"], + "git.branchRandomName.enable": false, + "git.branchSortOrder": "committerdate", + "git.branchValidationRegex": "", + "git.branchWhitespaceChar": "-", + "git.checkoutType": [ "local", "remote", "tags"], + "git.closeDiffOnOperation": false, + "git.commandsToLog": [], + "git.confirmEmptyCommits": true, + "git.confirmForcePush": true, + "git.confirmNoVerifyCommit": true, + "git.countBadge": "all", + "git.decorations.enabled": true, + "git.defaultBranchName": "main", + "git.defaultCloneDirectory": null, + "git.detectSubmodules": true, + "git.detectSubmodulesLimit": 10, + "git.enableCommitSigning": false, + "git.enabled": true, + "git.enableStatusBarSync": true, + "git.fetchOnPull": false, + "git.followTagsWhenSync": false, + "git.githubAuthentication": null, + "git.ignoredRepositories": [], + "git.ignoreLegacyWarning": false, + "git.ignoreLimitWarning": false, + "git.ignoreMissingGitWarning": false, + "git.ignoreRebaseWarning": false, + "git.ignoreSubmodules": false, + "git.ignoreWindowsGit27Warning": false, + "git.inputValidation": false, + "git.inputValidationLength": 72, + "git.inputValidationSubjectLength": 50, + "git.mergeEditor": false, + "git.openAfterClone": "prompt", + "git.openDiffOnClick": true, + "git.openRepositoryInParentFolders": "prompt", + "git.optimisticUpdate": true, + "git.path": null, + "git.postCommitCommand": "none", + "git.promptToSaveFilesBeforeCommit": "always", + "git.promptToSaveFilesBeforeStash": "always", + "git.pruneOnFetch": false, + "git.pullBeforeCheckout": false, + "git.pullTags": true, + "git.rebaseWhenSync": false, + "git.rememberPostCommitCommand": false, + "git.replaceTagsWhenPull": false, + "git.repositoryScanIgnoredFolders": [ "node_modules"], + "git.repositoryScanMaxDepth": 1, + "git.requireGitUserConfig": true, + "git.scanRepositories": [], + "git.showActionButton": { "commit": true, "publish": true, "sync": true}, + "git.showCommitInput": true, + "git.showInlineOpenFileAction": true, + "git.showProgress": true, + "git.showPushSuccessNotification": false, + "git.similarityThreshold": 50, + "git.smartCommitChanges": "all", + "git.statusLimit": 10000, + "git.suggestSmartCommit": true, + "git.supportCancellation": false, + "git.terminalAuthentication": true, + "git.terminalGitEditor": false, + "git.timeline.date": "committed", + "git.timeline.showAuthor": true, + "git.timeline.showUncommitted": false, + "git.untrackedChanges": "mixed", + "git.useCommitInputAsStashMessage": false, + "git.useEditorAsCommitInput": true, + "git.useForcePushIfIncludes": true, + "git.useForcePushWithLease": true, + "git.useIntegratedAskPass": true, + "git.verboseCommit": false, + "github.branchProtection": true, + "github.gitAuthentication": true, + "github.gitProtocol": "https", + "github-enterprise.uri": "", + "grunt.autoDetect": "off", + "gulp.autoDetect": "off", + "ipynb.pasteImagesAsAttachments.enabled": true, + "jake.autoDetect": "off", + "markdown.math.enabled": true, + "markdown.math.macros": {}, + "mediaPreview.video.autoPlay": false, + "mediaPreview.video.loop": false, + "merge-conflict.autoNavigateNextConflict.enabled": false, + "merge-conflict.codeLens.enabled": true, + "merge-conflict.decorators.enabled": true, + "merge-conflict.diffViewPosition": "Current", + "microsoft-sovereign-cloud.customEnvironment": {}, + "microsoft-sovereign-cloud.environment": "", + "debug.javascript.autoAttachFilter": "disabled", + "debug.javascript.autoAttachSmartPattern": [ "${workspaceFolder}/**", "!**/node_modules/**", "**/$KNOWN_TOOLS$/**"], + "debug.javascript.automaticallyTunnelRemoteServer": true, + "debug.javascript.breakOnConditionalError": false, + "debug.javascript.codelens.npmScripts": "top", + "debug.javascript.debugByLinkOptions": "on", + "debug.javascript.defaultRuntimeExecutable": { "pwa-node": "node"}, + "debug.javascript.pickAndAttachOptions": {}, + "debug.javascript.resourceRequestOptions": {}, + "debug.javascript.terminalOptions": {}, + "debug.javascript.unmapMissingSources": false, + "npm.autoDetect": "on", + "npm.enableRunFromFolder": false, + "npm.enableScriptExplorer": false, + "npm.exclude": "", + "npm.fetchOnlinePackageInfo": true, + "npm.packageManager": "auto", + "npm.runSilent": false, + "npm.scriptExplorerAction": "open", + "npm.scriptExplorerExclude": [], + "npm.scriptHover": true, + "references.preferredLocation": "peek", + "simpleBrowser.focusLockIndicator.enabled": true, + "continue.remoteConfigServerUrl": null, + "continue.remoteConfigSyncPeriod": 60, + "continue.showInlineTip": true, + "continue.telemetryEnabled": true, + "continue.userToken": null, + "debugpy.debugJustMyCode": true, + "python.activeStateToolPath": "state", + "python.autoComplete.extraPaths": [], + "python.condaPath": "", + "python.createEnvironment.contentButton": "hide", + "python.createEnvironment.trigger": "prompt", + "python.defaultInterpreterPath": "python", + "python.envFile": "${workspaceFolder}/.env", + "python.experiments.enabled": true, + "python.experiments.optInto": [], + "python.experiments.optOutFrom": [], + "python.globalModuleInstallation": false, + "python.interpreter.infoVisibility": "onPythonRelated", + "python.languageServer": "Default", + "python.logging.level": "error", + "python.missingPackage.severity": "Hint", + "python.pipenvPath": "pipenv", + "python.poetryPath": "poetry", + "python.REPL.enableREPLSmartSend": true, + "python.tensorBoard.logDirectory": "", + "python.terminal.activateEnvInCurrentTerminal": false, + "python.terminal.activateEnvironment": true, + "python.terminal.executeInFileDir": false, + "python.terminal.focusAfterLaunch": false, + "python.terminal.launchArgs": [], + "python.testing.autoTestDiscoverOnSaveEnabled": true, + "python.testing.cwd": null, + "python.testing.debugPort": 3000, + "python.testing.promptToConfigure": true, + "python.testing.pytestArgs": [], + "python.testing.pytestEnabled": false, + "python.testing.pytestPath": "pytest", + "python.testing.unittestArgs": [ "-v", "-s", ".", "-p", "*test*.py"], + "python.testing.unittestEnabled": false, + "python.venvFolders": [], + "python.venvPath": "", + "markdown.extension.bold.indicator": "**", + "markdown.extension.completion.enabled": false, + "markdown.extension.completion.respectVscodeSearchExclude": true, + "markdown.extension.completion.root": "", + "markdown.extension.extraLangIds": [], + "markdown.extension.italic.indicator": "*", + "markdown.extension.katex.macros": {}, + "markdown.extension.list.indentationSize": "adaptive", + "markdown.extension.list.toggle.candidate-markers": [ "-", "*", "+", "1.", "1)"], + "markdown.extension.math.enabled": true, + "markdown.extension.orderedList.autoRenumber": true, + "markdown.extension.orderedList.marker": "ordered", + "markdown.extension.preview.autoShowPreviewToSide": false, + "markdown.extension.print.absoluteImgPath": true, + "markdown.extension.print.imgToBase64": false, + "markdown.extension.print.includeVscodeStylesheets": true, + "markdown.extension.print.onFileSave": false, + "markdown.extension.print.pureHtml": false, + "markdown.extension.print.theme": "light", + "markdown.extension.print.validateUrls": true, + "markdown.extension.showActionButtons": false, + "markdown.extension.syntax.decorationFileSizeLimit": 50000, + "markdown.extension.syntax.decorations": null, + "markdown.extension.syntax.plainTheme": false, + "markdown.extension.tableFormatter.delimiterRowNoPadding": false, + "markdown.extension.tableFormatter.enabled": true, + "markdown.extension.tableFormatter.normalizeIndentation": false, + "markdown.extension.theming.decoration.renderCodeSpan": true, + "markdown.extension.theming.decoration.renderHardLineBreak": false, + "markdown.extension.theming.decoration.renderLink": false, + "markdown.extension.theming.decoration.renderParagraph": false, + "markdown.extension.theming.decoration.renderStrikethrough": true, + "markdown.extension.theming.decoration.renderTrailingSpace": false, + "markdown.extension.toc.levels": "1..6", + "markdown.extension.toc.omittedFromToc": {}, + "markdown.extension.toc.orderedList": false, + "markdown.extension.toc.plaintext": false, + "markdown.extension.toc.slugifyMode": "github", + "markdown.extension.toc.unorderedList.marker": "-", + "markdown.extension.toc.updateOnSave": true + +} \ No newline at end of file diff --git a/dotfiles_gitea/setup-scripts/fedora-install-obs.sh b/dotfiles_gitea/setup-scripts/fedora-install-obs.sh new file mode 100644 index 00000000..856ac0df --- /dev/null +++ b/dotfiles_gitea/setup-scripts/fedora-install-obs.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +flatpak install flathub com.obsproject.Studio + +rm -rf ~/.config/obs-studio/basic +ln -s $(realpath ../config/obs-studio/basic) $(realpath ~/.config/obs-studio/basic) + +rm -rf ~/.config/obs-studio/global.ini +ln -s $(realpath ../config/obs-studio/global.ini) $(realpath ~/.config/obs-studio/global.ini) diff --git a/dotfiles_gitea/setup-scripts/fedora-install-razer.sh b/dotfiles_gitea/setup-scripts/fedora-install-razer.sh new file mode 100644 index 00000000..43def502 --- /dev/null +++ b/dotfiles_gitea/setup-scripts/fedora-install-razer.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +sudo dnf install kernel-devel +sudo dnf config-manager --add-repo https://download.opensuse.org/repositories/hardware:/razer/Fedora_$(rpm -E %fedora)/hardware:razer.repo +sudo dnf install openrazer-meta + diff --git a/dotfiles_gitea/setup-scripts/fedora-setup-goxlr.sh b/dotfiles_gitea/setup-scripts/fedora-setup-goxlr.sh index 73dc5830..26138537 100644 --- a/dotfiles_gitea/setup-scripts/fedora-setup-goxlr.sh +++ b/dotfiles_gitea/setup-scripts/fedora-setup-goxlr.sh @@ -8,4 +8,9 @@ rm /tmp/goxlr.rpm rm -rf ~/.local/share/goxlr-utility/profiles ln -s $(realpath ../config/goxlr) $(realpath ~/.local/share/goxlr-utility/profiles) -/usr/bin/goxlr-launcher +mkdir -p ~/.config/systemd/user/ +cp ../config/goxlr/GoXLR.service ~/.config/systemd/user/ + +systemctl --user daemon-reload +systemctl --user enable GoXLR.service +systemctl --user start GoXLR.service