diff options
| author | github-actions <github-actions@github.com> | 2022-12-23 06:14:28 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-12-23 06:14:28 +0000 |
| commit | f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce (patch) | |
| tree | 3cc3f842b536393cd3793b59ea0f5e8400dae8ae | |
| parent | feat: add smithy-language-server support (#2342) (diff) | |
| download | nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.tar nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.tar.gz nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.tar.bz2 nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.tar.lz nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.tar.xz nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.tar.zst nvim-lspconfig-f6cdf0ac0e8ac5b2c40457cc1d83a9357dc2f7ce.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 34 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 34 |
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 27efe695..a7da2e92 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -154,6 +154,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [sixtyfps](#sixtyfps) - [slint_lsp](#slint_lsp) - [smarty_ls](#smarty_ls) +- [smithy_ls](#smithy_ls) - [solang](#solang) - [solargraph](#solargraph) - [solc](#solc) @@ -6471,6 +6472,39 @@ require'lspconfig'.smarty_ls.setup{} ``` +## smithy_ls + +https://github.com/awslabs/smithy-language-server + +`Smithy Language Server`, A Language Server Protocol implementation for the Smithy IDL + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.smithy_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "smithy-language-server", "0" } + ``` + - `filetypes` : + ```lua + { "smithy" } + ``` + - `root_dir` : + ```lua + <function 1> + ``` + - `single_file_support` : + ```lua + true + ``` + + ## solang A language server for Solidity diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 27efe695..a7da2e92 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -154,6 +154,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [sixtyfps](#sixtyfps) - [slint_lsp](#slint_lsp) - [smarty_ls](#smarty_ls) +- [smithy_ls](#smithy_ls) - [solang](#solang) - [solargraph](#solargraph) - [solc](#solc) @@ -6471,6 +6472,39 @@ require'lspconfig'.smarty_ls.setup{} ``` +## smithy_ls + +https://github.com/awslabs/smithy-language-server + +`Smithy Language Server`, A Language Server Protocol implementation for the Smithy IDL + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.smithy_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "smithy-language-server", "0" } + ``` + - `filetypes` : + ```lua + { "smithy" } + ``` + - `root_dir` : + ```lua + <function 1> + ``` + - `single_file_support` : + ```lua + true + ``` + + ## solang A language server for Solidity |
