docs: update server_configurations.md

skip-checks: true
This commit is contained in:
github-actions[bot] 2023-11-18 01:24:48 +00:00
parent 4f4208806b
commit a4083b0e87
2 changed files with 78 additions and 0 deletions

View file

@ -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/

View file

@ -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/