diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-22 00:08:36 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-22 00:08:36 +0200 |
| commit | b51f1ae28924a752258e7607fbc3210f9b18eaac (patch) | |
| tree | 8c8c095528990b3f6eb499dbcca15e9720e636d1 /.config/nvim/lua/lang/dockerfile.lua | |
| parent | da936b0ed9ac4c171d3c7908e41af1875a82b08b (diff) | |
Updates based on Chris's lunarvim
Diffstat (limited to '.config/nvim/lua/lang/dockerfile.lua')
| -rw-r--r-- | .config/nvim/lua/lang/dockerfile.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.config/nvim/lua/lang/dockerfile.lua b/.config/nvim/lua/lang/dockerfile.lua new file mode 100644 index 0000000..0009c30 --- /dev/null +++ b/.config/nvim/lua/lang/dockerfile.lua @@ -0,0 +1,35 @@ +local M = {} + +M.config = function() + O.lang.docker = {} +end + +M.format = function() + -- TODO: implement formatter for language + return "No formatter available!" +end + +M.lint = function() + -- TODO: implement linters (if applicable) + return "No linters configured!" +end + +M.lsp = function() + if require("utils").check_lsp_client_active "dockerls" then + return + end + + -- npm install -g dockerfile-language-server-nodejs + require("lspconfig").dockerls.setup { + cmd = { DATA_PATH .. "/lspinstall/dockerfile/node_modules/.bin/docker-langserver", "--stdio" }, + on_attach = require("lsp").common_on_attach, + root_dir = vim.loop.cwd, + } +end + +M.dap = function() + -- TODO: implement dap + return "No DAP configured!" +end + +return M |