Path: blob/main/src/vs/sessions/contrib/configuration/browser/configuration.contribution.ts
13401 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { Extensions, IConfigurationRegistry } from '../../../../platform/configuration/common/configurationRegistry.js';6import { Registry } from '../../../../platform/registry/common/platform.js';7import { ThemeSettingDefaults } from '../../../../workbench/services/themes/common/workbenchThemeService.js';89Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerDefaultConfigurations([{10overrides: {11'breadcrumbs.enabled': false,1213'chat.experimentalSessionsWindowOverride': true,14'chat.hookFilesLocations': {15'.claude/settings.local.json': false,16'.claude/settings.json': false,17'~/.claude/settings.json': false,18},19'chat.agent.maxRequests': 1000,20'chat.customizationsMenu.userStoragePath': '~/.copilot',21'chat.viewSessions.enabled': false,22'chat.implicitContext.suggestedContext': false,23'chat.implicitContext.enabled': { 'panel': 'never' },24'chat.tools.terminal.enableAutoApprove': true,2526'diffEditor.hideUnchangedRegions.enabled': true,27'diffEditor.renderGutterMenu': false,28'diffEditor.renderIndicators': false,29'diffEditor.renderMarginRevertIcon': false,30'diffEditor.renderSideBySide': true,31'diffEditor.useInlineViewWhenSpaceIsLimited': true,3233'extensions.ignoreRecommendations': true,3435'files.autoSave': 'afterDelay',3637'git.autofetch': true,38'git.autorefresh': true,39'git.branchRandomName.enable': true,40'git.detectWorktrees': false,41'git.showProgress': false,4243'github.copilot.enable': {44'markdown': true,45'plaintext': true,46},47'github.copilot.chat.claudeCode.enabled': true,48'github.copilot.chat.cli.autoCommit.enabled': false,49'github.copilot.chat.cli.branchSupport.enabled': true,50'github.copilot.chat.cli.isolationOption.enabled': true,51'github.copilot.chat.cli.sessionController.enabled': false,52'github.copilot.chat.cli.lazyLoadSessionItem.enabled': false,53'github.copilot.chat.cli.mcp.enabled': true,54'github.copilot.chat.cli.remote.enabled': false,55'github.copilot.chat.githubMcpServer.enabled': true,56'github.copilot.chat.languageContext.typescript.enabled': true,57'github.copilot.chat.cli.showExternalSessions': false,5859'inlineChat.affordance': 'editor',6061'search.quickOpen.includeHistory': false,6263'task.notifyWindowOnTaskCompletion': -1,6465'terminal.integrated.initialHint': false,6667'workbench.browser.openLocalhostLinks': true,68'workbench.browser.enableChatTools': true,6970'workbench.editor.doubleClickTabToToggleEditorGroupSizes': 'maximize',71'workbench.editor.restoreEditors': false,72'update.showReleaseNotes': false,73'workbench.notifications.position': 'bottom-right',74'workbench.startupEditor': 'none',75'workbench.tips.enabled': false,76'workbench.layoutControl.type': 'toggles',77'workbench.editor.useModal': 'all',78'workbench.panel.showLabels': false,79'workbench.colorTheme': ThemeSettingDefaults.COLOR_THEME_DARK,8081'window.menuStyle': 'custom',82'window.dialogStyle': 'custom',83},84donotCache: true,85preventExperimentOverride: true,86source: 'sessionsDefaults'87}]);888990