blob: ec5504ce91105de18294910910421710c5ba84de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'gleam', 'lsp' },
filetypes = { 'gleam' },
root_dir = function(fname)
return util.root_pattern('gleam.toml', '.git')(fname)
end,
},
docs = {
description = [[
https://github.com/gleam-lang/gleam
A language server for Gleam Programming Language.
[Installation](https://gleam.run/getting-started/installing/)
It can be i
]],
default_config = {
cmd = { 'gleam', 'lsp' },
root_dir = [[root_pattern("gleam.toml", ".git")]],
},
},
}
|