| 12345678910111213141516171819202122232425262728 | local M = {}M.config = function()  -- TODO: implement config for language  return "No config available!"endM.format = function()  -- TODO: implement formatters (if applicable)  return "No formatters configured!"endM.lint = function()  -- TODO: implement linters (if applicable)  return "No linters configured!"endM.lsp = function()  -- TODO: implement lsp  return "No LSP configured!"endM.dap = function()  -- TODO: implement dap  return "No DAP configured!"endreturn M
 |