Skip to content

Commit fb0b7dc

Browse files
authored
feat: bqls #3486
1 parent 3b4afc1 commit fb0b7dc

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

lua/lspconfig/configs/bqls.lua

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
return {
2+
default_config = {
3+
cmd = { 'bqls' },
4+
filetypes = { 'sql' },
5+
root_dir = function(fname)
6+
return vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])
7+
end,
8+
single_file_support = true,
9+
settings = {},
10+
},
11+
docs = {
12+
description = [[
13+
https://github.com/kitagry/bqls
14+
15+
The `bqls` BigQuery language server can be installed by running:
16+
17+
```sh
18+
$ go install github.com/kitagry/bqls@latest
19+
```
20+
]],
21+
},
22+
}

0 commit comments

Comments
 (0)