From 1e536231f181dd018fc8b718761cda623bdd67d1 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 26 May 2025 01:15:28 +0100 Subject: [PATCH] chore(mise): switch to default binary install path This resolves issues with VSCode sometimes not finding the mise executable within the custom path. --- zshenv | 3 +-- zshrc | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/zshenv b/zshenv index 3a5ce6b..2d3a8df 100644 --- a/zshenv +++ b/zshenv @@ -341,12 +341,11 @@ else export RUSTC_WRAPPER="" fi -# ~/.local/bin used by some tools (pipx, lunar, toml-sort, etc.) +# ~/.local/bin used by some tools (mise, pipx, lunar, toml-sort, etc.) path_prepend "$HOME/.local/bin" # mise setup export MISE_LIST_ALL_VERSIONS=1 -path_prepend "$HOME/.local/share/mise/bin" path_prepend "$HOME/.local/share/mise/shims" # aqua setup diff --git a/zshrc b/zshrc index c1ee73d..f3a5184 100644 --- a/zshrc +++ b/zshrc @@ -232,8 +232,7 @@ bindkey "\e[3;3~" kill-word # ============================================================================== MISE_HOME="$HOME/.local/share/mise" -MISE_ZSH_INIT="$MISE_HOME/shell/init.zsh" -export MISE_INSTALL_PATH="$MISE_HOME/bin/mise" +export MISE_INSTALL_PATH="$HOME/.local/bin/mise" if ! command-exists mise; then read -q 'REPLY?mise is not installed, install with `curl https://mise.run | sh`? [y/N]:' &&