-
Notifications
You must be signed in to change notification settings - Fork 543
Expand file tree
/
Copy pathSettings.ts
More file actions
34 lines (33 loc) · 1.02 KB
/
Settings.ts
File metadata and controls
34 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ColorMode } from "./ColorMode"
import type { SidebarPosition } from "./SidebarPosition"
import type { Zoom } from "./Zoom"
export interface Settings {
sidebarPosition: SidebarPosition
debugFlag: boolean
partyParrot: boolean
fixedIDE: boolean
zoom: Zoom
transparency: boolean
autoUpdate: boolean
additionalCliFlags: string
additionalEnvVars: string
dotfilesUrl: string
sshKeyPath: string
httpProxyUrl: string
httpsProxyUrl: string
noProxy: string
experimental_multiDevcontainer: boolean
experimental_fleet: boolean
experimental_jupyterNotebooks: boolean
experimental_vscodeInsiders: boolean
experimental_cursor: boolean
experimental_codium: boolean
experimental_zed: boolean
experimental_positron: boolean
experimental_rstudio: boolean
experimental_windsurf: boolean
experimental_antigravity: boolean
experimental_devPodPro: boolean
experimental_colorMode: ColorMode
}