summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorUltimateOmega <[email protected]>2021-07-15 17:38:36 +0430
committerGitHub <[email protected]>2021-07-15 13:08:36 +0000
commit21c515d8e3ba656cf139bf49dd08bedd239856a0 (patch)
treeab4d0f521993abf5e4c00826507e2db32ea34a86 /lua
parentebcb38d85ba8672b94a1cca3fbf16b3473915ddf (diff)
[LANG] add basic files for Fish (#968)
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