summaryrefslogtreecommitdiff
path: root/lua/lsp/c.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-07-14 12:54:26 -0400
committerChris <[email protected]>2021-07-14 12:54:26 -0400
commit3214ffed7ac2130373e90c3c2d75159d2abd6014 (patch)
tree71c13b019381ca23540681fc483bb51b6a9c6e4c /lua/lsp/c.lua
parent98430bd1082ebeaaabd7d01eb487be7580dcb939 (diff)
language template
Diffstat (limited to 'lua/lsp/c.lua')
-rw-r--r--lua/lsp/c.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/lua/lsp/c.lua b/lua/lsp/c.lua
new file mode 100644
index 00000000..e797c185
--- /dev/null
+++ b/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