summaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-01-16 16:53:19 +0300
committerGrail Finder <wohilas@gmail.com>2026-01-16 16:53:19 +0300
commiteb44b1e4b244e5a93e7d465b14df39819d8dfaba (patch)
treeabd29b6c63e198e5ce8057cd6a51a0b20b0d143f /config/config.go
parentf5d76eb60587564648e9f5084469a27cef5765b8 (diff)
Feat: impl attempt
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/config/config.go b/config/config.go
index 20935a2..62c8331 100644
--- a/config/config.go
+++ b/config/config.go
@@ -61,10 +61,12 @@ type Config struct {
WhisperBinaryPath string `toml:"WhisperBinaryPath"`
WhisperModelPath string `toml:"WhisperModelPath"`
STT_LANG string `toml:"STT_LANG"`
- DBPATH string `toml:"DBPATH"`
- FilePickerDir string `toml:"FilePickerDir"`
- FilePickerExts string `toml:"FilePickerExts"`
- EnableMouse bool `toml:"EnableMouse"`
+ DBPATH string `toml:"DBPATH"`
+ FilePickerDir string `toml:"FilePickerDir"`
+ FilePickerExts string `toml:"FilePickerExts"`
+ EnableMouse bool `toml:"EnableMouse"`
+ CharSpecificContextEnabled bool `toml:"CharSpecificContextEnabled"`
+ CharSpecificContextTag string `toml:"CharSpecificContextTag"`
}
func LoadConfig(fn string) (*Config, error) {