aboutsummaryrefslogtreecommitdiffstats
path: root/doc/server_configurations.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-07-29 05:44:22 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-07-29 05:44:22 +0000
commitfdc44768a09a65140aa00c92872a5381ad486485 (patch)
tree0abc08b0108f8a386990fb21d8c34791f162c01d /doc/server_configurations.md
parentfeat: add ballerina support (#3252) (diff)
downloadnvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.tar
nvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.tar.gz
nvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.tar.bz2
nvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.tar.lz
nvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.tar.xz
nvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.tar.zst
nvim-lspconfig-fdc44768a09a65140aa00c92872a5381ad486485.zip
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc/server_configurations.md')
-rw-r--r--doc/server_configurations.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index febd8066..23b9d99c 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -21,6 +21,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [awk_ls](#awk_ls)
- [azure_pipelines_ls](#azure_pipelines_ls)
- [bacon_ls](#bacon_ls)
+- [ballerina](#ballerina)
- [basedpyright](#basedpyright)
- [bashls](#bashls)
- [bazelrc-lsp](#bazelrc-lsp)
@@ -1060,6 +1061,36 @@ require'lspconfig'.bacon_ls.setup{}
```
+## ballerina
+
+Ballerina language server
+
+The Ballerina language's CLI tool comes with its own language server implementation.
+The `bal` command line tool must be installed and available in your system's PATH.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.ballerina.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "bal", "start-language-server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "ballerina" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+
+
## basedpyright
https://detachhead.github.io/basedpyright