Skip to content

Commit 8a9378a

Browse files
docs: update configs.md
skip-checks: true
1 parent bf6177e commit 8a9378a

2 files changed

Lines changed: 80 additions & 0 deletions

File tree

doc/configs.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ Nvim by running `:help lspconfig-all`.
391391
- [yls](#yls)
392392
- [ziggy](#ziggy)
393393
- [ziggy_schema](#ziggy_schema)
394+
- [zizmor](#zizmor)
394395
- [zk](#zk)
395396
- [zls](#zls)
396397
- [zuban](#zuban)
@@ -15066,6 +15067,50 @@ Default config:
1506615067

1506715068
---
1506815069

15070+
## zizmor
15071+
15072+
https://github.com/zizmorcore/zizmor
15073+
15074+
Zizmor language server.
15075+
15076+
`zizmor` can be installed by following the instructions [here](https://docs.zizmor.sh/installation/).
15077+
15078+
The default `cmd` assumes that the `zizmor` binary can be found in `$PATH`.
15079+
15080+
See `zizmor`'s [documentation](https://docs.zizmor.sh/) for additional documentation.
15081+
15082+
Snippet to enable the language server:
15083+
```lua
15084+
vim.lsp.enable('zizmor')
15085+
```
15086+
15087+
Default config:
15088+
- `capabilities` :
15089+
```lua
15090+
{
15091+
workspace = {
15092+
didChangeWorkspaceFolders = {
15093+
dynamicRegistration = true
15094+
}
15095+
}
15096+
}
15097+
```
15098+
- `cmd` :
15099+
```lua
15100+
{ "zizmor", "--lsp" }
15101+
```
15102+
- `filetypes` :
15103+
```lua
15104+
{ "yaml" }
15105+
```
15106+
- `init_options` :
15107+
```lua
15108+
{}
15109+
```
15110+
- `root_dir`: [../lsp/zizmor.lua:14](../lsp/zizmor.lua#L14)
15111+
15112+
---
15113+
1506915114
## zk
1507015115

1507115116
https://github.com/zk-org/zk

doc/configs.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11333,6 +11333,41 @@ Default config:
1133311333
{ ".git" }
1133411334
<
1133511335

11336+
------------------------------------------------------------------------------
11337+
zizmor
11338+
11339+
https://github.com/zizmorcore/zizmor
11340+
11341+
Zizmor language server.
11342+
11343+
`zizmor` can be installed by following the instructions [here](https://docs.zizmor.sh/installation/).
11344+
11345+
The default `cmd` assumes that the `zizmor` binary can be found in `$PATH`.
11346+
11347+
See `zizmor`'s [documentation](https://docs.zizmor.sh/) for additional documentation.
11348+
11349+
Snippet to enable the language server: >lua
11350+
vim.lsp.enable('zizmor')
11351+
11352+
11353+
Default config:
11354+
- capabilities: >lua
11355+
{
11356+
workspace = {
11357+
didChangeWorkspaceFolders = {
11358+
dynamicRegistration = true
11359+
}
11360+
}
11361+
}
11362+
- cmd: >lua
11363+
{ "zizmor", "--lsp" }
11364+
- filetypes: >lua
11365+
{ "yaml" }
11366+
- init_options: >lua
11367+
{}
11368+
- root_dir (use "gF" to view): ../lsp/zizmor.lua:14
11369+
<
11370+
1133611371
------------------------------------------------------------------------------
1133711372
zk
1133811373

0 commit comments

Comments
 (0)