aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/server_configurations.md39
-rw-r--r--doc/server_configurations.txt39
2 files changed, 78 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 43b72854..6708f6a4 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -16,6 +16,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [asm_lsp](#asm_lsp)
- [ast_grep](#ast_grep)
- [astro](#astro)
+- [autotools_ls](#autotools_ls)
- [awk_ls](#awk_ls)
- [azure_pipelines_ls](#azure_pipelines_ls)
- [bashls](#bashls)
@@ -925,6 +926,44 @@ require'lspconfig'.astro.setup{}
```
+## autotools_ls
+
+https://github.com/Freed-Wu/autotools-language-server
+
+`autotools-language-server` can be installed via `pip`:
+```sh
+pip install autotools-language-server
+```
+
+Language server for autoconf, automake and make using tree sitter in python.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.autotools_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "autotools-language-server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "config", "automake", "make" }
+ ```
+ - `root_dir` :
+ ```lua
+ { "configure.ac", "Makefile", "Makefile.am", "*.mk" }
+ ```
+ - `single_file_support` :
+ ```lua
+ true
+ ```
+
+
## awk_ls
https://github.com/Beaglefoot/awk-language-server/
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 43b72854..6708f6a4 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -16,6 +16,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [asm_lsp](#asm_lsp)
- [ast_grep](#ast_grep)
- [astro](#astro)
+- [autotools_ls](#autotools_ls)
- [awk_ls](#awk_ls)
- [azure_pipelines_ls](#azure_pipelines_ls)
- [bashls](#bashls)
@@ -925,6 +926,44 @@ require'lspconfig'.astro.setup{}
```
+## autotools_ls
+
+https://github.com/Freed-Wu/autotools-language-server
+
+`autotools-language-server` can be installed via `pip`:
+```sh
+pip install autotools-language-server
+```
+
+Language server for autoconf, automake and make using tree sitter in python.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.autotools_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "autotools-language-server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "config", "automake", "make" }
+ ```
+ - `root_dir` :
+ ```lua
+ { "configure.ac", "Makefile", "Makefile.am", "*.mk" }
+ ```
+ - `single_file_support` :
+ ```lua
+ true
+ ```
+
+
## awk_ls
https://github.com/Beaglefoot/awk-language-server/