Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kitagry/bqls.nvim

Neovim plugin for bqls
https://github.com/kitagry/bqls.nvim

Last synced: 13 days ago
JSON representation

Neovim plugin for bqls

Awesome Lists containing this project

README

        

## bqls.nvim

Neovim plugin for [BigQuery Language Server](https://github.com/kitagry/bqls).

### Setting

```lua
require("lspconfig").bqls.setup{
init_options = {
project_id = "YOUR_GOOGLE_CLOUD_PROJECT_ID",
}
}
```

If you want to show by [neo-tree](https://github.com/nvim-neo-tree/neo-tree.nvim).

```lua
require("neo-tree").setup({
sources = {
"filesystem",
"buffers",
"git_status",
"bqls"
},
bqls = {
project_ids = { "YOUR_GOOGLE_CLOUD_PROJECT_ID1", "YOUR_GOOGLE_CLOUD_PROJECT_ID2" }, -- default is {"bigquery-public-data"}
},
})
```