From 984018cfc9795ebf653931e241ee7073c0d6c9e3 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 17 Sep 2025 08:23:48 +0300 Subject: [PATCH] Add ~/.mise.toml Top-level mise config to prepend ~/.local/bin to the $PATH so we can run the bubblewrapped npm and yarn instad of those that are in the respective mise Node.js environments. --- dot_mise.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 dot_mise.toml diff --git a/dot_mise.toml b/dot_mise.toml new file mode 100644 index 0000000..2c03106 --- /dev/null +++ b/dot_mise.toml @@ -0,0 +1,3 @@ +[env] +# prepend PATH with local one so we can use npm wrapper (bwrap) +_.path = ["~/.local/bin"]