kitagry / bqls.nvim

Neovim plugin for bqls

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bqls.nvim

Neovim plugin for BigQuery Language Server.

Setting

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

If you want to show by neo-tree.

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"}
    },
})

About

Neovim plugin for bqls


Languages

Language:Lua 100.0%