Skip to content

Commit

Permalink
fix(health): don't error if cargo-nextest isn't found
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Jan 2, 2025
1 parent d6183fd commit 618f274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/rustaceanvim/config/internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ local RustaceanDefaultConfig = {
cargo_override = nil,

---@type boolean
enable_nextest = true,
enable_nextest = vim.fn.executable('cargo-nextest') == 1,

---@type boolean
enable_clippy = true,
Expand Down

0 comments on commit 618f274

Please sign in to comment.