diff options
| -rw-r--r-- | doc/server_configurations.md | 41 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 41 |
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/ |
