Skip to content

Commit

Permalink
Updated README for sublime text
Browse files Browse the repository at this point in the history
  • Loading branch information
juliosueiras committed Oct 4, 2019
1 parent 65a0c66 commit 8ab5890
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ This is LSP(Language Server Protocol) for Terraform
- [Issues](#issues-1)
+ [Intellij](#intellij)
+ [Vim](#vim)
+ [Sublime Text 3](#sublime-text-3)
+ [Emacs](#emacs)
+ [Others](#others)
* [Bugs](#bugs)
Expand Down Expand Up @@ -122,6 +123,34 @@ This is LSP(Language Server Protocol) for Terraform

- Should work with all lsp plugin on vim

### Sublime Text 3

Add this to the `clients` settings for [tomv564's LSP](https://github.com/tomv564/LSP) also make sure to have `terraform` syntax plugin for sublime text

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


### Emacs

- Work with [emacs-lsp/lsp-mode](https://github.com/emacs-lsp/lsp-mode) while still a little buggy
Expand Down

0 comments on commit 8ab5890

Please # to comment.