Skip to content

Intellisense and Emacs

Guides here are intended to help those navigate the "advanced developer" path. None of these guides are required to successfully install, customize or run Mother Tongues dictionares. If these guides are Greek to you, feel free to skip them.

VS Code

If you are using Visual Studio Code, you can add the schema to your for intellisense!

"json.schemas": [
        {
            "fileMatch": [
                "config.mtd.json"
            ],
            "url": "https://raw.githubusercontent.com/MotherTongues/mothertongues/main/mothertongues/schemas/config.json"
        }
    ]s

Emacs

For Emacs with lsp-mode you can add this to your .emacs file (or use M-x customize-variable lsp-json-schemas):

(setq lsp-json-schemas
    `[(:fileMatch ["config.mtd.json"]
        :url "https://raw.githubusercontent.com/MotherTongues/mothertongues/main/mothertongues/schemas/config.json")])