mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-06-13 18:01:58 +08:00
18 lines
467 B
TypeScript
18 lines
467 B
TypeScript
export const CODE_EDITOR_STORAGE_KEYS = {
|
|
theme: 'codeEditorTheme',
|
|
wordWrap: 'codeEditorWordWrap',
|
|
showMinimap: 'codeEditorShowMinimap',
|
|
lineNumbers: 'codeEditorLineNumbers',
|
|
fontSize: 'codeEditorFontSize',
|
|
} as const;
|
|
|
|
export const CODE_EDITOR_DEFAULTS = {
|
|
isDarkMode: true,
|
|
wordWrap: false,
|
|
minimapEnabled: true,
|
|
showLineNumbers: true,
|
|
fontSize: '12',
|
|
} as const;
|
|
|
|
export const CODE_EDITOR_SETTINGS_CHANGED_EVENT = 'codeEditorSettingsChanged';
|