aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/configs.md46
-rw-r--r--doc/configs.txt46
2 files changed, 92 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md
index 005de207..d7800a1f 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -23,6 +23,7 @@ Nvim by running `:help lspconfig-all`.
- [ballerina](#ballerina)
- [basedpyright](#basedpyright)
- [bashls](#bashls)
+- [basics_ls](#basics_ls)
- [bazelrc_lsp](#bazelrc_lsp)
- [beancount](#beancount)
- [bicep](#bicep)
@@ -1153,6 +1154,51 @@ require'lspconfig'.bashls.setup{}
```
+## basics_ls
+
+https://github.com/antonk52/basics-language-server/
+
+Buffer, path, and snippet completion
+
+```sh
+npm install -g basics-language-server
+```
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.basics_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "basics-language-server" }
+ ```
+ - `settings` :
+ ```lua
+ {
+ buffer = {
+ enable = true,
+ minCompletionLength = 4
+ },
+ path = {
+ enable = true
+ },
+ snippet = {
+ enable = false,
+ sources = {}
+ }
+ }
+ ```
+ - `single_file_support` :
+ ```lua
+ true
+ ```
+
+
## bazelrc_lsp
https://github.com/salesforce-misc/bazelrc-lsp
diff --git a/doc/configs.txt b/doc/configs.txt
index 005de207..d7800a1f 100644
--- a/doc/configs.txt
+++ b/doc/configs.txt
@@ -23,6 +23,7 @@ Nvim by running `:help lspconfig-all`.
- [ballerina](#ballerina)
- [basedpyright](#basedpyright)
- [bashls](#bashls)
+- [basics_ls](#basics_ls)
- [bazelrc_lsp](#bazelrc_lsp)
- [beancount](#beancount)
- [bicep](#bicep)
@@ -1153,6 +1154,51 @@ require'lspconfig'.bashls.setup{}
```
+## basics_ls
+
+https://github.com/antonk52/basics-language-server/
+
+Buffer, path, and snippet completion
+
+```sh
+npm install -g basics-language-server
+```
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.basics_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "basics-language-server" }
+ ```
+ - `settings` :
+ ```lua
+ {
+ buffer = {
+ enable = true,
+ minCompletionLength = 4
+ },
+ path = {
+ enable = true
+ },
+ snippet = {
+ enable = false,
+ sources = {}
+ }
+ }
+ ```
+ - `single_file_support` :
+ ```lua
+ true
+ ```
+
+
## bazelrc_lsp
https://github.com/salesforce-misc/bazelrc-lsp