Skip to content

Commit

Permalink
docs: update server_configurations.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions committed Jan 23, 2022
1 parent cea329c commit ea29110
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
28 changes: 28 additions & 0 deletions doc/server_configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi
- [ansiblels](#ansiblels)
- [arduino_language_server](#arduino_language_server)
- [asm_lsp](#asm_lsp)
- [awk_ls](#awk_ls)
- [bashls](#bashls)
- [beancount](#beancount)
- [bicep](#bicep)
Expand Down Expand Up @@ -353,6 +354,33 @@ require'lspconfig'.asm_lsp.setup{}
```


## awk_ls

https://github.com/Beaglefoot/awk-language-server/

`awk-language-server` can be installed via `npm`:
```sh
npm install -g awk-language-server
```



**Snippet to enable the language server:**
```lua
require'lspconfig'.awk_ls.setup{}
```

**Commands and default values:**
```lua
Commands:

Default Values:
cmd = { "awk-language-server" }
filetypes = { "awk" }
single_file_support = true
```


## bashls

https://github.com/mads-hartmann/bash-language-server
Expand Down
28 changes: 28 additions & 0 deletions doc/server_configurations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi
- [ansiblels](#ansiblels)
- [arduino_language_server](#arduino_language_server)
- [asm_lsp](#asm_lsp)
- [awk_ls](#awk_ls)
- [bashls](#bashls)
- [beancount](#beancount)
- [bicep](#bicep)
Expand Down Expand Up @@ -353,6 +354,33 @@ require'lspconfig'.asm_lsp.setup{}
```


## awk_ls

https://github.com/Beaglefoot/awk-language-server/

`awk-language-server` can be installed via `npm`:
```sh
npm install -g awk-language-server
```



**Snippet to enable the language server:**
```lua
require'lspconfig'.awk_ls.setup{}
```

**Commands and default values:**
```lua
Commands:

Default Values:
cmd = { "awk-language-server" }
filetypes = { "awk" }
single_file_support = true
```


## bashls

https://github.com/mads-hartmann/bash-language-server
Expand Down

0 comments on commit ea29110

Please sign in to comment.