[LANG] add basic files for Fish (#968)

This commit is contained in:
UltimateOmega 2021-07-15 17:38:36 +04:30 committed by GitHub
parent ebcb38d85b
commit 21c515d8e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

28
lua/lang/fish.lua Normal file
View file

@ -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