aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/postgres_lsp.lua
blob: 398123caaf494afe9370df35f22d6ed065ffaecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://pgtools.dev
---
--- A collection of language tools and a Language Server Protocol (LSP) implementation for Postgres, focusing on developer experience and reliable SQL tooling.

---@type vim.lsp.Config
return {
  cmd = { 'postgrestools', 'lsp-proxy' },
  filetypes = {
    'sql',
  },
  root_markers = { 'postgrestools.jsonc' },
}