diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-06-23 08:46:41 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-06-23 08:46:41 +0000 |
| commit | 9c9eb07fecc578e25e28db8dc9002b43fff2ed79 (patch) | |
| tree | e5594a8bfb3d9e28279a0efe8d2f992811fc76c4 | |
| parent | feat: add pug-lsp support (#3220) (diff) | |
| download | nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.tar nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.tar.gz nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.tar.bz2 nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.tar.lz nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.tar.xz nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.tar.zst nvim-lspconfig-9c9eb07fecc578e25e28db8dc9002b43fff2ed79.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 32 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 32 |
2 files changed, 64 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 7657ffbd..7529cb58 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -209,6 +209,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [prosemd_lsp](#prosemd_lsp) - [protols](#protols) - [psalm](#psalm) +- [pug](#pug) - [puppet](#puppet) - [purescriptls](#purescriptls) - [pylsp](#pylsp) @@ -8827,6 +8828,37 @@ require'lspconfig'.psalm.setup{} ``` +## pug + +https://github.com/opa-oz/pug-lsp + +An implementation of the Language Protocol Server for [Pug.js](http://pugjs.org) + +PugLSP can be installed via `go get github.com/opa-oz/pug-lsp`, or manually downloaded from [releases page](https://github.com/opa-oz/pug-lsp/releases) + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.pug.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "pug-lsp" } + ``` + - `filetypes` : + ```lua + { "pug" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## puppet LSP server for Puppet. diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 7657ffbd..7529cb58 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -209,6 +209,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [prosemd_lsp](#prosemd_lsp) - [protols](#protols) - [psalm](#psalm) +- [pug](#pug) - [puppet](#puppet) - [purescriptls](#purescriptls) - [pylsp](#pylsp) @@ -8827,6 +8828,37 @@ require'lspconfig'.psalm.setup{} ``` +## pug + +https://github.com/opa-oz/pug-lsp + +An implementation of the Language Protocol Server for [Pug.js](http://pugjs.org) + +PugLSP can be installed via `go get github.com/opa-oz/pug-lsp`, or manually downloaded from [releases page](https://github.com/opa-oz/pug-lsp/releases) + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.pug.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "pug-lsp" } + ``` + - `filetypes` : + ```lua + { "pug" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## puppet LSP server for Puppet. |
