aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-23 08:46:41 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-23 08:46:41 +0000
commit9c9eb07fecc578e25e28db8dc9002b43fff2ed79 (patch)
treee5594a8bfb3d9e28279a0efe8d2f992811fc76c4
parentfeat: add pug-lsp support (#3220) (diff)
downloadnvim-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.md32
-rw-r--r--doc/server_configurations.txt32
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.