blob: 6e0734d60cb926834a4ebf5e81989acf21d8cdf2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'
local server_name = "sqlls"
local root_pattern = util.root_pattern(".sqllsrc.json")
configs[server_name] = {
default_config = {
filetypes = {"sql", "mysql"};
root_dir = function(fname)
return root_pattern(fname) or vim.loop.os_homedir()
end;
settings = {};
};
docs = {
description = [[
https://github.com/joe-re/sql-language-server
`cmd` value is **not set** by default. The `cmd` value can be overriden in the `setup` table;
```lua
require'lspconfig'.sqlls.setup{
cmd = {"path/to/command", "up", "--method", "stdio"};
...
}
```
This LSP can be installed via `npm`. Find further instructions on manual installation of the sql-language-server at [joe-re/sql-language-server](https://github.com/joe-re/sql-language-server).
<br>
]];
};
}
-- vim:et ts=2 sw=2
|