Let me add my desire for including other dictionary files. I have two substational LibreOffice dictionary files that I have built over the past while and it would be great if I could include them somehow. The following workflow and command can convert them easily to something JSON can work with.
cp FILE.dic FILE.list
Remove the LibreOffice header information
for i in `cat FILE.list`; do echo \"$i\", >> FILE.json; done
The new split config files in Obsidian include dictionary words here:
"spellcheckDictionary": [
"word0",
"word1"
]
If there were perhaps a config option to include a user-defined JSON file’s path, this would be very helpful!