diff --git a/dot_config/fish/config.fish b/dot_config/fish/config.fish index 19acce1..1c40279 100644 --- a/dot_config/fish/config.fish +++ b/dot_config/fish/config.fish @@ -20,7 +20,7 @@ if status is-interactive end end - if command -q direnv - direnv hook fish | source + if command -q mise + mise activate fish | source end end diff --git a/dot_config/mise/config.toml b/dot_config/mise/config.toml new file mode 100644 index 0000000..5c62447 --- /dev/null +++ b/dot_config/mise/config.toml @@ -0,0 +1,4 @@ +[settings] + +[settings.status] +show_env = true diff --git a/dot_config/zsh/functions.zsh b/dot_config/zsh/functions.zsh index 50dcae8..ce842c1 100644 --- a/dot_config/zsh/functions.zsh +++ b/dot_config/zsh/functions.zsh @@ -100,6 +100,6 @@ if testbin grc; then unset cmds cmd fi -if testbin direnv; then - eval "$(direnv hook zsh)" +if testbin mise; then + eval "$(mise activate zsh)" fi