12345678910111213141516171819202122232425 |
- local M = {}
- M.config = function()
- -- TODO: implement config for language
- return "No config available!"
- end
- M.format = function()
- -- TODO: implement formatter for language
- return "No formatter available!"
- end
- M.lint = function()
- -- TODO: implement linters (if applicable)
- return "No linters configured!"
- end
- M.lsp = function() end
- M.dap = function()
- -- TODO: implement dap
- return "No DAP configured!"
- end
- return M
|