aboutsummaryrefslogtreecommitdiffstats
path: root/doc/configs.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-10-27 20:22:24 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-10-27 20:22:24 +0000
commitef40b787e68eb44b11e65596fdc46a1ad3445ccc (patch)
tree8d2ee8648fd1597258b51af23a15f6325f31aacb /doc/configs.md
parentchore(postgres_lsp): update config for postgres-language-server renaming #4155 (diff)
downloadnvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.tar
nvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.tar.gz
nvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.tar.bz2
nvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.tar.lz
nvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.tar.xz
nvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.tar.zst
nvim-lspconfig-ef40b787e68eb44b11e65596fdc46a1ad3445ccc.zip
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc/configs.md')
-rw-r--r--doc/configs.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/configs.md b/doc/configs.md
index d7b98286..65a924fd 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -8710,7 +8710,7 @@ Default config:
## postgres_lsp
-https://pgtools.dev
+https://pg-language-server.com
A collection of language tools and a Language Server Protocol (LSP) implementation for Postgres, focusing on developer experience and reliable SQL tooling.
@@ -8722,7 +8722,7 @@ vim.lsp.enable('postgres_lsp')
Default config:
- `cmd` :
```lua
- { "postgrestools", "lsp-proxy" }
+ { "postgres-language-server", "lsp-proxy" }
```
- `filetypes` :
```lua
@@ -8730,7 +8730,7 @@ Default config:
```
- `root_markers` :
```lua
- { "postgrestools.jsonc" }
+ { "postgres-language-server.jsonc" }
```
---