diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-08-23 21:47:33 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-08-23 21:47:33 +0000 |
| commit | f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a (patch) | |
| tree | 0162fcc0aa906837206d68d8f41ba8522eddfe4f | |
| parent | feat: add postgres_lsp (#2781) (diff) | |
| download | nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.tar nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.tar.gz nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.tar.bz2 nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.tar.lz nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.tar.xz nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.tar.zst nvim-lspconfig-f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 34 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 34 |
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 6a0cb9d9..2da48a16 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -151,6 +151,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [phpactor](#phpactor) - [pkgbuild_language_server](#pkgbuild_language_server) - [please](#please) +- [postgres_lsp](#postgres_lsp) - [powershell_es](#powershell_es) - [prismals](#prismals) - [prolog_ls](#prolog_ls) @@ -6635,6 +6636,39 @@ require'lspconfig'.please.setup{} ``` +## postgres_lsp + +https://github.com/supabase/postgres_lsp + +A Language Server for Postgres + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.postgres_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "postgres_lsp" } + ``` + - `filetypes` : + ```lua + { "sql" } + ``` + - `root_dir` : + ```lua + util.root_pattern 'root-file.txt' + ``` + - `single_file_support` : + ```lua + true + ``` + + ## powershell_es https://github.com/PowerShell/PowerShellEditorServices diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 6a0cb9d9..2da48a16 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -151,6 +151,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [phpactor](#phpactor) - [pkgbuild_language_server](#pkgbuild_language_server) - [please](#please) +- [postgres_lsp](#postgres_lsp) - [powershell_es](#powershell_es) - [prismals](#prismals) - [prolog_ls](#prolog_ls) @@ -6635,6 +6636,39 @@ require'lspconfig'.please.setup{} ``` +## postgres_lsp + +https://github.com/supabase/postgres_lsp + +A Language Server for Postgres + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.postgres_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "postgres_lsp" } + ``` + - `filetypes` : + ```lua + { "sql" } + ``` + - `root_dir` : + ```lua + util.root_pattern 'root-file.txt' + ``` + - `single_file_support` : + ```lua + true + ``` + + ## powershell_es https://github.com/PowerShell/PowerShellEditorServices |
