Commit 056f569 1 parent 436aad9 commit 056f569 Copy full SHA for 056f569
File tree 2 files changed +140
-0
lines changed
2 files changed +140
-0
lines changed Original file line number Diff line number Diff line change @@ -330,6 +330,8 @@ autogenerated from the Lua files. You can view this file in Nvim by running
330
330
- [ yamlls] ( #yamlls )
331
331
- [ yang_lsp] ( #yang_lsp )
332
332
- [ yls] ( #yls )
333
+ - [ ziggy] ( #ziggy )
334
+ - [ ziggy_schema] ( #ziggy_schema )
333
335
- [ zk] ( #zk )
334
336
- [ zls] ( #zls )
335
337
@@ -13987,6 +13989,74 @@ require'lspconfig'.yls.setup{}
13987
13989
```
13988
13990
13989
13991
13992
+ ## ziggy
13993
+
13994
+ https://ziggy-lang.io/documentation/ziggy-lsp/
13995
+
13996
+ Language server for the Ziggy data serialization format
13997
+
13998
+
13999
+
14000
+
14001
+ ** Snippet to enable the language server:**
14002
+ ``` lua
14003
+ require ' lspconfig' .ziggy .setup {}
14004
+ ```
14005
+
14006
+
14007
+ ** Default values:**
14008
+ - ` cmd ` :
14009
+ ``` lua
14010
+ { " ziggy" , " lsp" }
14011
+ ```
14012
+ - ` filetypes ` :
14013
+ ``` lua
14014
+ { " ziggy" }
14015
+ ```
14016
+ - ` root_dir ` :
14017
+ ``` lua
14018
+ util .find_git_ancestor
14019
+ ```
14020
+ - ` single_file_support ` :
14021
+ ``` lua
14022
+ true
14023
+ ```
14024
+
14025
+
14026
+ ## ziggy_schema
14027
+
14028
+ https://ziggy-lang.io/documentation/ziggy-lsp/
14029
+
14030
+ Language server for schema files of the Ziggy data serialization format
14031
+
14032
+
14033
+
14034
+
14035
+ ** Snippet to enable the language server:**
14036
+ ``` lua
14037
+ require ' lspconfig' .ziggy_schema .setup {}
14038
+ ```
14039
+
14040
+
14041
+ ** Default values:**
14042
+ - ` cmd ` :
14043
+ ``` lua
14044
+ { " ziggy" , " lsp" , " --schema" }
14045
+ ```
14046
+ - ` filetypes ` :
14047
+ ``` lua
14048
+ { " ziggy_schema" }
14049
+ ```
14050
+ - ` root_dir ` :
14051
+ ``` lua
14052
+ util .find_git_ancestor
14053
+ ```
14054
+ - ` single_file_support ` :
14055
+ ``` lua
14056
+ true
14057
+ ```
14058
+
14059
+
13990
14060
## zk
13991
14061
13992
14062
https://github.com/mickael-menu/zk
Original file line number Diff line number Diff line change @@ -330,6 +330,8 @@ autogenerated from the Lua files. You can view this file in Nvim by running
330
330
- [yamlls](#yamlls)
331
331
- [yang_lsp](#yang_lsp)
332
332
- [yls](#yls)
333
+ - [ziggy](#ziggy)
334
+ - [ziggy_schema](#ziggy_schema)
333
335
- [zk](#zk)
334
336
- [zls](#zls)
335
337
@@ -13987,6 +13989,74 @@ require'lspconfig'.yls.setup{}
13987
13989
```
13988
13990
13989
13991
13992
+ ## ziggy
13993
+
13994
+ https://ziggy-lang.io/documentation/ziggy-lsp/
13995
+
13996
+ Language server for the Ziggy data serialization format
13997
+
13998
+
13999
+
14000
+
14001
+ **Snippet to enable the language server:**
14002
+ ```lua
14003
+ require'lspconfig'.ziggy.setup{}
14004
+ ```
14005
+
14006
+
14007
+ **Default values:**
14008
+ - `cmd` :
14009
+ ```lua
14010
+ { "ziggy", "lsp" }
14011
+ ```
14012
+ - `filetypes` :
14013
+ ```lua
14014
+ { "ziggy" }
14015
+ ```
14016
+ - `root_dir` :
14017
+ ```lua
14018
+ util.find_git_ancestor
14019
+ ```
14020
+ - `single_file_support` :
14021
+ ```lua
14022
+ true
14023
+ ```
14024
+
14025
+
14026
+ ## ziggy_schema
14027
+
14028
+ https://ziggy-lang.io/documentation/ziggy-lsp/
14029
+
14030
+ Language server for schema files of the Ziggy data serialization format
14031
+
14032
+
14033
+
14034
+
14035
+ **Snippet to enable the language server:**
14036
+ ```lua
14037
+ require'lspconfig'.ziggy_schema.setup{}
14038
+ ```
14039
+
14040
+
14041
+ **Default values:**
14042
+ - `cmd` :
14043
+ ```lua
14044
+ { "ziggy", "lsp", "--schema" }
14045
+ ```
14046
+ - `filetypes` :
14047
+ ```lua
14048
+ { "ziggy_schema" }
14049
+ ```
14050
+ - `root_dir` :
14051
+ ```lua
14052
+ util.find_git_ancestor
14053
+ ```
14054
+ - `single_file_support` :
14055
+ ```lua
14056
+ true
14057
+ ```
14058
+
14059
+
13990
14060
## zk
13991
14061
13992
14062
https://github.com/mickael-menu/zk
You can’t perform that action at this time.
0 commit comments