feat: elm support

This commit is contained in:
Andrejus
2020-12-23 21:06:46 +00:00
parent 3d6acd34ea
commit 52649b32a0
3 changed files with 56 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
"coc.preferences.formatOnSaveFiletypes": [
"css",
"dockerfile",
"elm",
"html",
"javascript",
"javascriptreact",
@@ -38,6 +39,17 @@
"filetypes": ["tf", "terraform"],
"initializationOptions": {},
"settings": {}
},
"elmLS": {
"command": "elm-language-server",
"filetypes": ["elm"],
"rootPatterns": ["elm.json"],
"initializationOptions": {
"elmPath": "elm",
"elmFormatPath": "elm-format",
"elmTestPath": "elm-test",
"elmAnalyseTrigger": "change"
}
}
},