aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/rust_analyzer
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2021-05-17 15:16:07 +0200
committerGitHub <noreply@github.com>2021-05-17 15:16:07 +0200
commit79745b0a25ffb386918eec03ded27f7a7da1b96f (patch)
tree4d3f77e1a02b10fc1e58ae1df4f2a81dea25d561 /lua/nvim-lsp-installer/servers/rust_analyzer
parentremove logo.png from repo (diff)
downloadmason-79745b0a25ffb386918eec03ded27f7a7da1b96f.tar
mason-79745b0a25ffb386918eec03ded27f7a7da1b96f.tar.gz
mason-79745b0a25ffb386918eec03ded27f7a7da1b96f.tar.bz2
mason-79745b0a25ffb386918eec03ded27f7a7da1b96f.tar.lz
mason-79745b0a25ffb386918eec03ded27f7a7da1b96f.tar.xz
mason-79745b0a25ffb386918eec03ded27f7a7da1b96f.tar.zst
mason-79745b0a25ffb386918eec03ded27f7a7da1b96f.zip
s/install_cmd/installer/g (#15)
Diffstat (limited to 'lua/nvim-lsp-installer/servers/rust_analyzer')
-rw-r--r--lua/nvim-lsp-installer/servers/rust_analyzer/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/servers/rust_analyzer/init.lua b/lua/nvim-lsp-installer/servers/rust_analyzer/init.lua
index 99b0c54c..f959cd69 100644
--- a/lua/nvim-lsp-installer/servers/rust_analyzer/init.lua
+++ b/lua/nvim-lsp-installer/servers/rust_analyzer/init.lua
@@ -7,7 +7,7 @@ local root_dir = server.get_server_root_path("rust")
return server.Server:new {
name = "rust_analyzer",
root_dir = root_dir,
- install_cmd = zx.file("./install.mjs"),
+ installer = zx.file("./install.mjs"),
default_options = {
cmd = { path.concat { root_dir, "rust-analyzer" } },
},