c.lua 494 B

12345678910111213141516171819202122232425262728
  1. local M = {}
  2. M.config = function()
  3. -- TODO: implement config for language
  4. return "No config available!"
  5. end
  6. M.format = function()
  7. -- TODO: implement linters (if applicable)
  8. return "No formatters configured!"
  9. end
  10. M.lint = function()
  11. -- TODO: implement linters (if applicable)
  12. return "No linters configured!"
  13. end
  14. M.lsp = function()
  15. -- TODO: implement lsp
  16. return "No LSP configured!"
  17. end
  18. M.dap = function()
  19. -- TODO: implement dap
  20. return "No DAP configured!"
  21. end
  22. return M