Skip to content

Commit

Permalink
feat(bqls): add bqls support
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbode committed Dec 1, 2024
1 parent 90c1c6c commit 55d2e7e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lua/lspconfig/configs/bqls.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'bqls' },
filetypes = { 'sql' },
root_dir = util.find_git_ancestor,
settings = {},
},
docs = {
description = [[
https://github.com/kitagry/bqls
The `bqls` BigQuery language server can be installed by running:
```sh
$ go install github.com/kitagry/bqls@latest
```
]],
},
}

0 comments on commit 55d2e7e

Please sign in to comment.