Add terraform lsp support (#1726)

Using terraform-ls and enables auto-formate support. Also adds tfvars as an extra filetype.
imgbot
Michael Daffin 2 years ago committed by GitHub
parent 49c5bc5934
commit a76e94848a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,7 @@
| go | ✓ | ✓ | ✓ | `gopls` |
| graphql | ✓ | | | |
| haskell | ✓ | | | `haskell-language-server-wrapper` |
| hcl | ✓ | | ✓ | |
| hcl | ✓ | | ✓ | `terraform-ls` |
| html | ✓ | | | |
| iex | ✓ | | | |
| java | ✓ | | | |

@ -762,7 +762,9 @@ language-server = { command = "kotlin-language-server" }
name = "hcl"
scope = "source.hcl"
injection-regex = "(hcl|tf)"
file-types = ["hcl", "tf"]
file-types = ["hcl", "tf", "tfvars"]
roots = []
comment-token = "#"
indent = { tab-width = 2, unit = " " }
language-server = { command = "terraform-ls", args = ["serve"] }
auto-format = true

Loading…
Cancel
Save