taplo.lua 178 B

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