markdown.lua 263 B

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