aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/configs/ada_ls.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/lua/lspconfig/configs/ada_ls.lua b/lua/lspconfig/configs/ada_ls.lua
new file mode 100644
index 00000000..3a8c79b0
--- /dev/null
+++ b/lua/lspconfig/configs/ada_ls.lua
@@ -0,0 +1,32 @@
+local util = require 'lspconfig.util'
+
+return {
+ default_config = {
+ cmd = { 'ada_language_server' },
+ filetypes = { 'ada' },
+ root_dir = util.root_pattern('Makefile', '.git', '*.gpr', '*.adc'),
+ },
+ docs = {
+ description = [[
+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 `ada_ls.setup{}`:
+
+```lua
+require('lspconfig').ada_ls.setup{
+ settings = {
+ ada = {
+ projectFile = "project.gpr";
+ scenarioVariables = { ... };
+ }
+ }
+}
+```
+]],
+ default_config = {
+ root_dir = [[util.root_pattern("Makefile", ".git", "*.gpr", "*.adc")]],
+ },
+ },
+}