diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-06-14 06:57:59 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-06-14 06:57:59 +0000 |
| commit | 37f362ef42d1a604d332e8d3d7d47593852b4313 (patch) | |
| tree | 06708c9d50b8b5942e463f193330420da22dac35 | |
| parent | feat: add django-template-lsp support (#3203) (diff) | |
| download | nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.tar nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.tar.gz nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.tar.bz2 nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.tar.lz nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.tar.xz nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.tar.zst nvim-lspconfig-37f362ef42d1a604d332e8d3d7d47593852b4313.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 363bbc90..de136fb9 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -68,6 +68,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [dhall_lsp_server](#dhall_lsp_server) - [diagnosticls](#diagnosticls) - [digestif](#digestif) +- [djlsp](#djlsp) - [docker_compose_language_service](#docker_compose_language_service) - [dockerls](#dockerls) - [dolmenls](#dolmenls) @@ -2949,6 +2950,39 @@ require'lspconfig'.digestif.setup{} ``` +## djlsp + + https://github.com/fourdigits/django-template-lsp + + `djlsp`, a language server for Django templates. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.djlsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "djlsp" } + ``` + - `filetypes` : + ```lua + { "html", "htmldjango" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + + ## docker_compose_language_service https://github.com/microsoft/compose-language-service diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 363bbc90..de136fb9 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -68,6 +68,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [dhall_lsp_server](#dhall_lsp_server) - [diagnosticls](#diagnosticls) - [digestif](#digestif) +- [djlsp](#djlsp) - [docker_compose_language_service](#docker_compose_language_service) - [dockerls](#dockerls) - [dolmenls](#dolmenls) @@ -2949,6 +2950,39 @@ require'lspconfig'.digestif.setup{} ``` +## djlsp + + https://github.com/fourdigits/django-template-lsp + + `djlsp`, a language server for Django templates. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.djlsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "djlsp" } + ``` + - `filetypes` : + ```lua + { "html", "htmldjango" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + + ## docker_compose_language_service https://github.com/microsoft/compose-language-service |
