aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/postgres_lsp.lua
blob: f74ee673cbf606cb9d28cabe5d189277f7bd0658 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'postgres_lsp' },
    filetypes = { 'sql' },
    root_dir = util.root_pattern 'root-file.txt',
    single_file_support = true,
  },
  docs = {
    description = [[
https://github.com/supabase/postgres_lsp

A Language Server for Postgres
        ]],
  },
}