diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -219,6 +219,7 @@ nvim_lsp.SERVER.setup{config} The following LSP configs are included. Follow a link to find documentation for that config. +- [als](#als) - [bashls](#bashls) - [ccls](#ccls) - [clangd](#clangd) @@ -254,6 +255,23 @@ that config. - [vuels](#vuels) - [yamlls](#yamlls) +## als + +https://github.com/adacore/ada_language_server + +AdaCore's Ada language server. + +Can be installed in Nvim with `:LspInstall als` + +```lua +require'nvim_lsp'.als.setup{} + + Default Values: + cmd = { "ada_language_server" } -- On windows: ada_language_server.exe + filetypes = { "ada" } + root_dir = root_pattern("Makefile", ".git") +``` + ## bashls https://github.com/mads-hartmann/bash-language-server |
