diff options
| author | Github Actions <actions@github> | 2021-01-30 17:38:33 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2021-01-30 17:38:33 +0000 |
| commit | 529880de695c298edaf42fc1c4e86b259dbcea8a (patch) | |
| tree | 83a77307aca3457b9cc7b536da41dbcd7c4ac7cd | |
| parent | Add sqls support (#422) (diff) | |
| download | nvim-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.md | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -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 |
