I've added the following to my user settings: ``` "emmet.syntaxProfiles": { "HTML (Eex)": "html", }, "emmet.includeLanguages": { "HTML (Eex)": "html", }, ``` However, emmet code expansion for html will only work in .eex files if I change the following from: ``` "files.associations": { "*.eex": "elixir" } ``` to ``` "files.associations": { "*.eex": "html" } ``` Is there a way to make vscode see the file as an elixir file, but also enable code expansion with emmet? I have this extension installed to add elixir code support: mjmcloug.vscode-elixir