(nvim) fix issues with ts-autotag
This commit is contained in:
parent
601fd3598d
commit
51824ef86b
4 changed files with 48 additions and 1 deletions
15
nvim/lsp/postgres_lsp.lua
Normal file
15
nvim/lsp/postgres_lsp.lua
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue