aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/hls/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/servers/hls/init.lua')
-rw-r--r--lua/nvim-lsp-installer/servers/hls/init.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/nvim-lsp-installer/servers/hls/init.lua b/lua/nvim-lsp-installer/servers/hls/init.lua
index 84fe023f..b19d4a39 100644
--- a/lua/nvim-lsp-installer/servers/hls/init.lua
+++ b/lua/nvim-lsp-installer/servers/hls/init.lua
@@ -1,13 +1,13 @@
-local server = require("nvim-lsp-installer.server")
-local path = require("nvim-lsp-installer.path")
-local zx = require("nvim-lsp-installer.installers.zx")
+local server = require "nvim-lsp-installer.server"
+local path = require "nvim-lsp-installer.path"
+local zx = require "nvim-lsp-installer.installers.zx"
-local root_dir = server.get_server_root_path("haskell")
+local root_dir = server.get_server_root_path "haskell"
return server.Server:new {
name = "hls",
root_dir = root_dir,
- installer = zx.file("./install.mjs"),
+ installer = zx.file "./install.mjs",
default_options = {
cmd = { path.concat { root_dir, "hls" } },
},