LunarVim/ftplugin/docker.lua

7 lines
264 B
Lua
Raw Normal View History

-- npm install -g dockerfile-language-server-nodejs
2021-07-05 03:14:01 +02:00
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,
2021-03-26 00:58:40 +01:00
}