summaryrefslogtreecommitdiff
path: root/ftplugin/docker.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-01 23:42:26 -0400
committerchristianchiarulli <[email protected]>2021-07-01 23:42:26 -0400
commit20ed47e21e966a5b857ef9970ae6171b3a504ce1 (patch)
tree92bdefc7589545f4429a55b53e4493ad7832e632 /ftplugin/docker.lua
parent9bb4f8a085644914c79343b48c808509311ee203 (diff)
lsp in ftplugin austonautomoy
Diffstat (limited to 'ftplugin/docker.lua')
-rw-r--r--ftplugin/docker.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/ftplugin/docker.lua b/ftplugin/docker.lua
new file mode 100644
index 00000000..b477a239
--- /dev/null
+++ b/ftplugin/docker.lua
@@ -0,0 +1,6 @@
+-- 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
+}