more refactor

This commit is contained in:
christianchiarulli 2021-07-14 16:27:08 -04:00
parent a20e04c289
commit a0900923cf
3 changed files with 4 additions and 4 deletions

View file

@ -1,28 +0,0 @@
local M = {}
M.config = function()
-- TODO: implement config for language
return "No config available!"
end
M.format = function()
-- TODO: implement linters (if applicable)
return "No formatters configured!"
end
M.lint = function()
-- TODO: implement linters (if applicable)
return "No linters configured!"
end
M.lsp = function()
-- TODO: implement lsp
return "No LSP configured!"
end
M.dap = function()
-- TODO: implement dap
return "No DAP configured!"
end
return M