1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:20:06 +08:00
SpaceVim/bundle/nvim-lspconfig/lua/lspconfig/sqlls.lua
2021-10-05 15:13:10 +08:00

34 lines
869 B
Lua

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 overridden 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>
]],
},
}