This commit is contained in:
2026-02-16 23:00:36 -08:00
parent 041dbc08a7
commit f466cf5dde
5 changed files with 249 additions and 64 deletions

View File

@@ -109,6 +109,14 @@
"fontColor": "#cad3f5",
"backgroundColor": "transparent",
},
"frequencyDictionary": {
"enabled": true,
"sourcePath": "",
"topX": 10000,
"mode": "single",
"singleColor": "#f5a97f",
"bandedColors": ["#ed8796", "#f5a97f", "#f9e2af", "#a6e3a1", "#8aadf4"],
},
},
"jimaku": {
// "apiKey": "YOUR_API_KEY",
@@ -128,4 +136,11 @@
"whisperBin": "/usr/bin/whisper-cli",
"whisperModel": "~/models/whisper.cpp/ggml-small.bin",
},
"anilist": {
"accessToken": "cat ~/.anilist-token.txt",
},
"immersionTracking": {
"enabled": true,
"dbPath": "",
},
}

View File

@@ -75,7 +75,35 @@
".cursor/rules/*.md"
],
"permission": {
"edit": "ask",
"bash": "ask"
"edit": {
"*": "ask",
"*.md": "allow",
"~/projects/japanese/SubMiner/*": "allow"
},
"grep": "allow",
"glob": "allow",
"list": "allow",
"task": "allow",
"skill": "allow",
"webfetch": "allow",
"websearch": "allow",
"codesearch": "allow",
"read": {
"*": "allow",
"*.env": "deny",
"*.env.*": "deny",
"*.env.example": "allow"
},
"bash": {
"*": "ask",
"git *": "allow",
"pnpm *": "allow",
"rm *": "deny",
"grep *": "allow"
},
"external_directory": {
"*": "ask",
"~/projects/*": "allow"
}
}
}