We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b4afc1 commit fb0b7dcCopy full SHA for fb0b7dc
1 file changed
lua/lspconfig/configs/bqls.lua
@@ -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