소스 검색

language template

Chris 4 년 전
부모
커밋
3214ffed7a
1개의 변경된 파일28개의 추가작업 그리고 0개의 파일을 삭제
  1. 28 0
      lua/lsp/c.lua

+ 28 - 0
lua/lsp/c.lua

@@ -0,0 +1,28 @@
+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