1234567891011121314151617181920212223 |
- local common = require("lsp.common-config")
- local opts = {
- capabilities = common.capabilities,
- flags = common.flags,
- on_attach = function(_, bufnr)
- common.keyAttach(bufnr)
-
- end,
-
- settings = {
- gopls = {
- analyses = {
- unusedparams = true,
- },
- staticcheck = true,
- },
- },
- }
- return {
- on_setup = function(server)
- server.setup(opts)
- end,
- }
|