Skip to content

sqls

https://github.com/lighttiger2505/sqls

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.

Setup

require'lspconfig'.sqls.setup{}

Default values

cmd = { "sqls" }
filetypes = { "sql", "mysql" }
root_dir = function(fname)
      return util.root_pattern 'config.yml'(fname) or util.path.dirname(fname)
    end,
settings = {}
Back to top