diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-01-14 12:48:01 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-01-14 12:48:01 +0000 |
| commit | 4facf2c096bf5ff63f914c453924dc44c09525da (patch) | |
| tree | 986d34a940290a5ff3180fc777ee365661da9a40 /doc | |
| parent | feat: add alloy language server (#3560) (diff) | |
| download | nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.tar nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.tar.gz nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.tar.bz2 nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.tar.lz nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.tar.xz nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.tar.zst nvim-lspconfig-4facf2c096bf5ff63f914c453924dc44c09525da.zip | |
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 25 | ||||
| -rw-r--r-- | doc/configs.txt | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 7da6318f..adcbbcfa 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -8,6 +8,7 @@ Nvim by running `:help lspconfig-all`. - [ada_ls](#ada_ls) - [agda_ls](#agda_ls) - [aiken](#aiken) +- [alloy_ls](#alloy_ls) - [anakin_language_server](#anakin_language_server) - [angularls](#angularls) - [ansiblels](#ansiblels) @@ -441,6 +442,30 @@ Default config: - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/aiken.lua:4](../lua/lspconfig/configs/aiken.lua#L4) +## alloy_ls + +https://github.com/AlloyTools/org.alloytools.alloy + +Alloy is a formal specification language for describing structures and a tool for exploring them. + +Snippet to enable the language server: +```lua +require'lspconfig'.alloy_ls.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "alloy", "lsp" } + ``` +- `filetypes` : + ```lua + { "alloy" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/alloy_ls.lua:2](../lua/lspconfig/configs/alloy_ls.lua#L2) +- `single_file_support` : `true` + + ## anakin_language_server https://pypi.org/project/anakin-language-server/ diff --git a/doc/configs.txt b/doc/configs.txt index 7da6318f..adcbbcfa 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -8,6 +8,7 @@ Nvim by running `:help lspconfig-all`. - [ada_ls](#ada_ls) - [agda_ls](#agda_ls) - [aiken](#aiken) +- [alloy_ls](#alloy_ls) - [anakin_language_server](#anakin_language_server) - [angularls](#angularls) - [ansiblels](#ansiblels) @@ -441,6 +442,30 @@ Default config: - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/aiken.lua:4](../lua/lspconfig/configs/aiken.lua#L4) +## alloy_ls + +https://github.com/AlloyTools/org.alloytools.alloy + +Alloy is a formal specification language for describing structures and a tool for exploring them. + +Snippet to enable the language server: +```lua +require'lspconfig'.alloy_ls.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "alloy", "lsp" } + ``` +- `filetypes` : + ```lua + { "alloy" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/alloy_ls.lua:2](../lua/lspconfig/configs/alloy_ls.lua#L2) +- `single_file_support` : `true` + + ## anakin_language_server https://pypi.org/project/anakin-language-server/ |
