summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/lang/fish.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/lua/lang/fish.lua b/lua/lang/fish.lua
new file mode 100644
index 00000000..a347cff7
--- /dev/null
+++ b/lua/lang/fish.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 formatters (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