blob: 8b6dc432839a3075ca629c39c2317453dd11aee5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'
configs.terraformls = {
default_config = {
cmd = { 'terraform-ls', 'serve' },
filetypes = { 'terraform' },
root_dir = util.root_pattern('.terraform', '.git'),
},
docs = {
package_json = 'https://raw.githubusercontent.com/hashicorp/vscode-terraform/master/package.json',
description = [[
https://github.com/hashicorp/terraform-ls
Terraform language server
Download a released binary from https://github.com/hashicorp/terraform-ls/releases.
]],
default_config = {
root_dir = [[root_pattern(".terraform", ".git")]],
},
},
}
|