bash.lua 300 B

1234567891011121314
  1. local common = require("lsp.common-config")
  2. local opts = {
  3. capabilities = common.capabilities,
  4. flags = common.flags,
  5. on_attach = function(client, bufnr)
  6. common.disableFormat(client)
  7. common.keyAttach(bufnr)
  8. end,
  9. }
  10. return {
  11. on_setup = function(server)
  12. server.setup(opts)
  13. end,
  14. }