aboutsummaryrefslogtreecommitdiffstats
path: root/doc/server_configurations.md
diff options
context:
space:
mode:
authorTama McGlinn <t.mcglinn@gmail.com>2024-09-20 09:49:16 +0200
committerGitHub <noreply@github.com>2024-09-20 15:49:16 +0800
commit7b8b0b3ddd0ed6eddc93982753acaddc578defac (patch)
tree50b1168f25165430c1c2bc2fd12bdb762389462e /doc/server_configurations.md
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.tar
nvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.tar.gz
nvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.tar.bz2
nvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.tar.lz
nvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.tar.xz
nvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.tar.zst
nvim-lspconfig-7b8b0b3ddd0ed6eddc93982753acaddc578defac.zip
fix(als): remove als config (#3310)
Moved ALS config into own repo. See issue #1683 regarding problems with the current config. lspconfig is not intended to provide functional lsp configs, but rather a framework for other plugins to implement those. For more about that, see the discussion on https://github.com/neovim/nvim-lspconfig/pull/1693 The new ALS LSP config plugin is https://github.com/TamaMcGlinn/nvim-lspconfig-ada
Diffstat (limited to 'doc/server_configurations.md')
-rw-r--r--doc/server_configurations.md49
1 files changed, 0 insertions, 49 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 958a6331..b9476511 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -402,55 +402,6 @@ require'lspconfig'.aiken.setup{}
```
-## als
-
-https://github.com/AdaCore/ada_language_server
-
-Installation instructions can be found [here](https://github.com/AdaCore/ada_language_server#Install).
-
-Can be configured by passing a "settings" object to `als.setup{}`:
-
-```lua
-require('lspconfig').als.setup{
- settings = {
- ada = {
- projectFile = "project.gpr";
- scenarioVariables = { ... };
- }
- }
-}
-```
-
-
-
-**Snippet to enable the language server:**
-```lua
-require'lspconfig'.als.setup{}
-```
-
-
-**Default values:**
- - `cmd` :
- ```lua
- { "ada_language_server" }
- ```
- - `deprecate` :
- ```lua
- {
- to = "github.com/TamaMcGlinn/nvim-lspconfig-ada",
- version = "0.2.0"
- }
- ```
- - `filetypes` :
- ```lua
- { "ada" }
- ```
- - `root_dir` :
- ```lua
- util.root_pattern("Makefile", ".git", "*.gpr", "*.adc")
- ```
-
-
## anakin_language_server
https://pypi.org/project/anakin-language-server/