diff options
| -rw-r--r-- | doc/server_configurations.md | 28 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 28 |
2 files changed, 56 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 3bc182e7..d19d1e75 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -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) @@ -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 diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 3bc182e7..d19d1e75 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -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) @@ -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 |
