aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/smithy_ls.lua
blob: adc5e5050a68d77b6f4d6875286f51523fe383ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://github.com/awslabs/smithy-language-server
---
--- `Smithy Language Server`, A Language Server Protocol implementation for the Smithy IDL

-- pass 0 as the first argument to use STDIN/STDOUT for communication
local cmd = { 'smithy-language-server', '0' }

return {
  cmd = cmd,
  filetypes = { 'smithy' },
  root_markers = { 'smithy-build.json', 'build.gradle', 'build.gradle.kts', '.git' },
}