aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGithub Actions <actions@github>2021-01-30 17:38:33 +0000
committerGithub Actions <actions@github>2021-01-30 17:38:33 +0000
commit529880de695c298edaf42fc1c4e86b259dbcea8a (patch)
tree83a77307aca3457b9cc7b536da41dbcd7c4ac7cd
parentAdd sqls support (#422) (diff)
downloadnvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.tar
nvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.tar.gz
nvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.tar.bz2
nvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.tar.lz
nvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.tar.xz
nvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.tar.zst
nvim-lspconfig-529880de695c298edaf42fc1c4e86b259dbcea8a.zip
[docgen] Update CONFIG.md
skip-checks: true
-rw-r--r--CONFIG.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/CONFIG.md b/CONFIG.md
index 873aebef..76fbf9ba 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -58,6 +58,7 @@ that config.
- [sorbet](#sorbet)
- [sourcekit](#sourcekit)
- [sqlls](#sqlls)
+- [sqls](#sqls)
- [sumneko_lua](#sumneko_lua)
- [svelte](#svelte)
- [terraformls](#terraformls)
@@ -4266,6 +4267,32 @@ require'lspconfig'.sqlls.setup{}
settings = {}
```
+## sqls
+
+https://github.com/lighttiger2505/sqls
+
+```lua
+require'lspconfig'.sqls.setup{
+ cmd = {"path/to/command", "-config" "path/to/config.yml"};
+ ...
+}
+```
+Sqls can be installed via `go get github.com/lighttiger2505/sqls`. Instructions for compiling Sqls from the source can be found at [lighttiger2505/sqls](https://github.com/lighttiger2505/sqls).
+
+
+
+```lua
+require'lspconfig'.sqls.setup{}
+
+ Commands:
+
+ Default Values:
+ cmd = { "sqls" }
+ filetypes = { "sql", "mysql" }
+ root_dir = <function 1>
+ settings = {}
+```
+
## sumneko_lua
https://github.com/sumneko/lua-language-server