Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 535 Bytes

sublime3.md

File metadata and controls

25 lines (23 loc) · 535 Bytes

Sublime Text 3 Support

Add this to the clients settings for tomv564's LSP also make sure to have terraform syntax plugin for sublime text

{
  "clients":
  {
    "terraform":
    {
      "command":
      [
        "terraform-lsp",
        "-enable-log-file",
        "-log-location",
        "/tmp/"
      ],
      "enabled": true,
      "scopes": ["source.terraform"],
      "syntaxes":  ["Packages/Terraform/Terraform.sublime-syntax"],
      "languageId": "terraform"
    }
  }
}