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

28 lines
715 B
Lua

local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'
configs.sqls = {
default_config = {
cmd = { 'sqls' },
filetypes = { 'sql', 'mysql' },
root_dir = function(fname)
return util.root_pattern 'config.yml'(fname) or util.path.dirname(fname)
end,
settings = {},
},
docs = {
description = [[
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).
]],
},
}