diff --git a/lua/astrocommunity/editing-support/rustowl/README.md b/lua/astrocommunity/editing-support/rustowl/README.md index 4049e8b99..4a6a69200 100644 --- a/lua/astrocommunity/editing-support/rustowl/README.md +++ b/lua/astrocommunity/editing-support/rustowl/README.md @@ -5,3 +5,9 @@ Visualize Ownership and Lifetimes in Rust. See docs for usage **Repository**: + +## Note + +This plugin can take a while to build, and `Lazy.nvim` has a build timeout. It's recommended to **increase the build timeout** +so this plugin can build. + diff --git a/lua/astrocommunity/editing-support/rustowl/init.lua b/lua/astrocommunity/editing-support/rustowl/init.lua index e6cda31f3..f9ecb25df 100644 --- a/lua/astrocommunity/editing-support/rustowl/init.lua +++ b/lua/astrocommunity/editing-support/rustowl/init.lua @@ -1,7 +1,7 @@ return { "cordx56/rustowl", version = "*", - build = "cd rustowl && cargo install --path . --locked", + build = "cargo install --locked rustowl", lazy = false, opts = {}, }