🔧 persist font size across sessions

This commit is contained in:
2026-03-20 20:12:56 +10:00
parent d9325173ef
commit 3f2909e505
4 changed files with 18 additions and 8 deletions

View File

@@ -5,6 +5,8 @@ import { readFileSync, writeFileSync, mkdirSync } from 'fs'
export interface GlobalConfig {
apiKey?: string
projectPath?: string
fontSize?: number
theme?: 'dark' | 'light'
}
const CONFIG_DIR = join(homedir(), '.hohoff')