Skip to content

Instantly share code, notes, and snippets.

@Macorreag
Created March 21, 2021 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Macorreag/92b8dcdd4c1750759f5fa718d744c772 to your computer and use it in GitHub Desktop.
Save Macorreag/92b8dcdd4c1750759f5fa718d744c772 to your computer and use it in GitHub Desktop.
Elixir Vscode Folder Configuration
{
"recommendations": [
"jakebecker.elixir-ls"
]
}
{
// ELIXIR CONFIGURATION
// Change formater to format files with extention to Elixir
"[elixir]": {
"editor.defaultFormatter": "JakeBecker.elixir-ls"
},
// For templates of PhoeniX
"files.associations": {
"*.ex": "elixir",
"*.exs": "elixir",
// "*.eex": "HTML (EEx)",
// "*.leex": "HTML (EEx)",
// "*.html.EEx": "HTML (EEx)",
},
// Support Emmet for Templates Phoenix
"emmet.includeLanguages": {
"html-eex": "html"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment