Skip to content

Commit 3b4afc1

Browse files
docs: update configs.md
skip-checks: true
1 parent 692574e commit 3b4afc1

2 files changed

Lines changed: 58 additions & 0 deletions

File tree

doc/configs.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ Nvim by running `:help lspconfig-all`.
257257
- [robotframework_ls](#robotframework_ls)
258258
- [roc_ls](#roc_ls)
259259
- [rome](#rome)
260+
- [rpmspec](#rpmspec)
260261
- [rubocop](#rubocop)
261262
- [ruby_lsp](#ruby_lsp)
262263
- [ruff](#ruff)
@@ -9259,6 +9260,35 @@ Default config:
92599260

92609261
---
92619262

9263+
## rpmspec
9264+
9265+
https://github.com/dcermak/rpm-spec-language-server
9266+
9267+
Language server protocol (LSP) support for RPM Spec files.
9268+
9269+
Snippet to enable the language server:
9270+
```lua
9271+
require'lspconfig'.rpmspec.setup{}
9272+
```
9273+
9274+
Default config:
9275+
- `cmd` :
9276+
```lua
9277+
{ "python3", "-mrpm_lsp_server", "--stdio" }
9278+
```
9279+
- `filetypes` :
9280+
```lua
9281+
{ "spec" }
9282+
```
9283+
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/rpmspec.lua:2](../lua/lspconfig/configs/rpmspec.lua#L2)
9284+
- `settings` :
9285+
```lua
9286+
{}
9287+
```
9288+
- `single_file_support` : `true`
9289+
9290+
---
9291+
92629292
## rubocop
92639293

92649294
https://github.com/rubocop/rubocop

doc/configs.txt

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8650,6 +8650,34 @@ Default config:
86508650
- `single_file_support` : `true`
86518651

86528652

8653+
------------------------------------------------------------------------------
8654+
rpmspec
8655+
8656+
https://github.com/dcermak/rpm-spec-language-server
8657+
8658+
Language server protocol (LSP) support for RPM Spec files.
8659+
8660+
Snippet to enable the language server: >lua
8661+
require'lspconfig'.rpmspec.setup{}
8662+
8663+
8664+
Default config:
8665+
- `cmd` :
8666+
```lua
8667+
{ "python3", "-mrpm_lsp_server", "--stdio" }
8668+
```
8669+
- `filetypes` :
8670+
```lua
8671+
{ "spec" }
8672+
```
8673+
- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/rpmspec.lua:2](../lua/lspconfig/configs/rpmspec.lua#L2)
8674+
- `settings` :
8675+
```lua
8676+
{}
8677+
```
8678+
- `single_file_support` : `true`
8679+
8680+
86538681
------------------------------------------------------------------------------
86548682
rubocop
86558683

0 commit comments

Comments
 (0)