aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/installers/dockerls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/installers/dockerls.lua')
-rw-r--r--lua/nvim-lsp-installer/installers/dockerls.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/lua/nvim-lsp-installer/installers/dockerls.lua b/lua/nvim-lsp-installer/installers/dockerls.lua
deleted file mode 100644
index 021b098b..00000000
--- a/lua/nvim-lsp-installer/installers/dockerls.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-local installer = require('nvim-lsp-installer.installer')
-
-local root_dir = installer.get_server_root_path('dockerfile')
-
-return installer.Installer:new {
- name = 'dockerls',
- root_dir = root_dir,
- install_cmd = [[npm install dockerfile-language-server-nodejs@latest]],
- default_options = {
- cmd = { root_dir .. '/node_modules/.bin/docker-langserver', '--stdio' },
- },
-}