Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kitagry/bqls.nvim
- Owner: kitagry
- Created: 2024-02-12T14:01:49.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-14T12:17:32.000Z (3 months ago)
- Last Synced: 2024-08-14T13:39:35.769Z (3 months ago)
- Language: Lua
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"}
},
})
```