aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/clojure_lsp/init.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-08-14 23:19:23 +0200
committerWilliam Boman <william@redwill.se>2021-08-15 00:47:15 +0200
commitd8f4f30463fcfc4b8b60811dbe195aba86917966 (patch)
treec6a004cb1a08921184f7b5d85721e9144f20aa00 /lua/nvim-lsp-installer/servers/clojure_lsp/init.lua
parentadd `env` option to shell.raw, and other cosmetic improvements (diff)
downloadmason-d8f4f30463fcfc4b8b60811dbe195aba86917966.tar
mason-d8f4f30463fcfc4b8b60811dbe195aba86917966.tar.gz
mason-d8f4f30463fcfc4b8b60811dbe195aba86917966.tar.bz2
mason-d8f4f30463fcfc4b8b60811dbe195aba86917966.tar.lz
mason-d8f4f30463fcfc4b8b60811dbe195aba86917966.tar.xz
mason-d8f4f30463fcfc4b8b60811dbe195aba86917966.tar.zst
mason-d8f4f30463fcfc4b8b60811dbe195aba86917966.zip
stylua
Diffstat (limited to 'lua/nvim-lsp-installer/servers/clojure_lsp/init.lua')
-rw-r--r--lua/nvim-lsp-installer/servers/clojure_lsp/init.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/nvim-lsp-installer/servers/clojure_lsp/init.lua b/lua/nvim-lsp-installer/servers/clojure_lsp/init.lua
index 9a235a2d..6f54129e 100644
--- a/lua/nvim-lsp-installer/servers/clojure_lsp/init.lua
+++ b/lua/nvim-lsp-installer/servers/clojure_lsp/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("clojure_lsp")
+local root_dir = server.get_server_root_path "clojure_lsp"
return server.Server:new {
name = "clojure_lsp",
root_dir = root_dir,
- installer = zx.file("./install.mjs"),
+ installer = zx.file "./install.mjs",
default_options = {
cmd = { path.concat { root_dir, "clojure-lsp" } },
},