mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-23 09:18:51 +02:00
fix(rust): show error when rust-analyzer not found
This commit is contained in:
parent
f48d55a653
commit
d3500a4a33
1 changed files with 6 additions and 0 deletions
|
@ -90,6 +90,12 @@ return {
|
||||||
},
|
},
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
vim.g.rustaceanvim = vim.tbl_deep_extend("keep", vim.g.rustaceanvim or {}, opts or {})
|
vim.g.rustaceanvim = vim.tbl_deep_extend("keep", vim.g.rustaceanvim or {}, opts or {})
|
||||||
|
if vim.fn.executable("rust-analyzer") == 0 then
|
||||||
|
LazyVim.error(
|
||||||
|
"**rust-analyzer** not found in PATH, please install it.\nhttps://rust-analyzer.github.io/",
|
||||||
|
{ title = "rustaceanvim" }
|
||||||
|
)
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue