aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index b5702a202..6d00b8670 100644
--- a/src/config.js
+++ b/src/config.js
@@ -17,6 +17,7 @@ export const DEFAULT_APP_SETTINGS = {
17 showDisabledServices: true, 17 showDisabledServices: true,
18 showMessageBadgeWhenMuted: true, 18 showMessageBadgeWhenMuted: true,
19 enableSpellchecking: true, 19 enableSpellchecking: true,
20 spellcheckerLanguage: 'en-us',
20 darkMode: false, 21 darkMode: false,
21 locale: '', 22 locale: '',
22 fallbackLocale: 'en-US', 23 fallbackLocale: 'en-US',
@@ -35,3 +36,5 @@ export const FILE_SYSTEM_SETTINGS_TYPES = [
35]; 36];
36 37
37export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config'); 38export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config');
39
40export const DICTIONARY_PATH = path.join(app.getPath('userData'), 'dicts');