diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-06 01:44:24 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-06 01:44:24 +0000 |
| commit | d3ad666b7895f958d088cceb6f6c199672c404fe (patch) | |
| tree | 009fa896378542ee055b479a75a3f5836c31d105 | |
| parent | feat: bqls #3486 (diff) | |
| download | nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.tar nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.tar.gz nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.tar.bz2 nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.tar.lz nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.tar.xz nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.tar.zst nvim-lspconfig-d3ad666b7895f958d088cceb6f6c199672c404fe.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 34 | ||||
| -rw-r--r-- | doc/configs.txt | 32 |
2 files changed, 66 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 1dcfc912..e34a17e9 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -35,6 +35,7 @@ Nvim by running `:help lspconfig-all`. - [bitbake_language_server](#bitbake_language_server) - [bitbake_ls](#bitbake_ls) - [blueprint_ls](#blueprint_ls) +- [bqls](#bqls) - [bqnlsp](#bqnlsp) - [bright_script](#bright_script) - [bsl_ls](#bsl_ls) @@ -1589,6 +1590,39 @@ Default config: --- +## bqls + +https://github.com/kitagry/bqls + +The `bqls` BigQuery language server can be installed by running: + +```sh +$ go install github.com/kitagry/bqls@latest +``` + +Snippet to enable the language server: +```lua +require'lspconfig'.bqls.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "bqls" } + ``` +- `filetypes` : + ```lua + { "sql" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/bqls.lua:2](../lua/lspconfig/configs/bqls.lua#L2) +- `settings` : + ```lua + {} + ``` +- `single_file_support` : `true` + +--- + ## bqnlsp https://git.sr.ht/~detegr/bqnlsp diff --git a/doc/configs.txt b/doc/configs.txt index c22a7834..a8a3998a 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1202,6 +1202,38 @@ Default config: ------------------------------------------------------------------------------ +bqls + +https://github.com/kitagry/bqls + +The `bqls` BigQuery language server can be installed by running: + +```sh +$ go install github.com/kitagry/bqls@latest +``` + +Snippet to enable the language server: >lua + require'lspconfig'.bqls.setup{} + + +Default config: +- `cmd` : + ```lua + { "bqls" } + ``` +- `filetypes` : + ```lua + { "sql" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/bqls.lua:2](../lua/lspconfig/configs/bqls.lua#L2) +- `settings` : + ```lua + {} + ``` +- `single_file_support` : `true` + + +------------------------------------------------------------------------------ bqnlsp https://git.sr.ht/~detegr/bqnlsp |
