Created
March 21, 2021 04:15
-
-
Save Macorreag/92b8dcdd4c1750759f5fa718d744c772 to your computer and use it in GitHub Desktop.
Elixir Vscode Folder Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"jakebecker.elixir-ls" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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