(nvim) fix issues with ts-autotag

This commit is contained in:
juancwu 2026-05-30 01:20:23 +00:00
commit 51824ef86b
4 changed files with 48 additions and 1 deletions

15
nvim/lsp/postgres_lsp.lua Normal file
View file

@ -0,0 +1,15 @@
---@brief
---
--- 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.
---@type vim.lsp.Config
return {
cmd = { "postgres-language-server", "lsp-proxy" },
filetypes = {
"sql",
},
root_markers = { "postgres-language-server.jsonc" },
workspace_required = true,
}