Skip to content

Commit cdd295f

Browse files
authored
Merge pull request #306 from unixorn/2025-02-housekeeping
2025-02 housekeeping
2 parents f9299b7 + 4e9360a commit cdd295f

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
- [zqs-enable-ssh-key-loading](#zqs-enable-ssh-key-loading)
4444
- [zqs-disable-zmv-autoloading](#zqs-disable-zmv-autoloading)
4545
- [zqs-enable-zmv-autoloading](#zqs-enable-zmv-autoloading)
46-
- [`zqs-disable-zsh-profiling](#zqs-disable-zsh-profiling)
47-
- [`zqs-enable-zsh-profiling](#zqs-enable-zsh-profiling)
46+
- [zqs-disable-zsh-profiling](#zqs-disable-zsh-profiling)
47+
- [zqs-enable-zsh-profiling](#zqs-enable-zsh-profiling)
4848
- [zqs selfupdate](#zqs-selfupdate)
4949
- [zqs update](#zqs-update)
5050
- [zqs update-plugins](#zqs-update-plugins)
@@ -323,11 +323,11 @@ Don't run `autoload -U zmv` when creating a new session.
323323

324324
Run `autoload -U zmv` when creating a new session. This is the default behavior.
325325

326-
##### `zqs-disable-zsh-profiling
326+
##### zqs-disable-zsh-profiling
327327

328328
Disable ZSH's profiler. This is the default.
329329

330-
##### `zqs-enable-zsh-profiling
330+
##### zqs-enable-zsh-profiling
331331

332332
Turn on ZSH's profiler
333333

zsh/.zshrc.d/001-load-mise-if-present

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
if [ -f ~/.local/bin/mise ]; then
2+
eval "$(~/.local/bin/mise activate zsh)"
3+
elif [ -f /opt/homebrew/bin/mise ]; then
4+
eval "$(/opt/homebrew/bin/mise activate zsh --shims)"
5+
elif [ -f /usr/local/bin/mise ]; then
6+
eval "$(/usr/local/bin/mise activate zsh)"
7+
fi

0 commit comments

Comments
 (0)