aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2023-04-09 00:36:33 +0000
committergithub-actions <github-actions@github.com>2023-04-09 00:36:33 +0000
commit27e9e1d2638ffd133b06f314a49ac55825cb1017 (patch)
treef7032711fb06babf07fafe3bf8ca3a413ef1ef7a
parentfeat: add pylyzer lsp config (#2548) (diff)
downloadnvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.tar
nvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.tar.gz
nvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.tar.bz2
nvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.tar.lz
nvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.tar.xz
nvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.tar.zst
nvim-lspconfig-27e9e1d2638ffd133b06f314a49ac55825cb1017.zip
docs: update server_configurations.md
skip-checks: true
-rw-r--r--doc/server_configurations.md41
-rw-r--r--doc/server_configurations.txt41
2 files changed, 82 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index c98d1737..3e3fb658 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -144,6 +144,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [puppet](#puppet)
- [purescriptls](#purescriptls)
- [pylsp](#pylsp)
+- [pylyzer](#pylyzer)
- [pyre](#pyre)
- [pyright](#pyright)
- [qml_lsp](#qml_lsp)
@@ -6359,6 +6360,46 @@ require'lspconfig'.pylsp.setup{}
```
+## pylyzer
+
+ https://github.com/mtshiba/pylyzer
+
+ `pylyzer`, a fast static code analyzer & language server for Python.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.pylyzer.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "pylyzer", "--server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "python" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+ - `settings` :
+ ```lua
+ {
+ python = {
+ checkOnType = false,
+ diagnostics = true,
+ inlayHints = true,
+ smartCompletion = true
+ }
+ }
+ ```
+
+
## pyre
https://pyre-check.org/
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index c98d1737..3e3fb658 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -144,6 +144,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [puppet](#puppet)
- [purescriptls](#purescriptls)
- [pylsp](#pylsp)
+- [pylyzer](#pylyzer)
- [pyre](#pyre)
- [pyright](#pyright)
- [qml_lsp](#qml_lsp)
@@ -6359,6 +6360,46 @@ require'lspconfig'.pylsp.setup{}
```
+## pylyzer
+
+ https://github.com/mtshiba/pylyzer
+
+ `pylyzer`, a fast static code analyzer & language server for Python.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.pylyzer.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "pylyzer", "--server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "python" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+ - `settings` :
+ ```lua
+ {
+ python = {
+ checkOnType = false,
+ diagnostics = true,
+ inlayHints = true,
+ smartCompletion = true
+ }
+ }
+ ```
+
+
## pyre
https://pyre-check.org/