File tree Expand file tree Collapse file tree 5 files changed +8
-3
lines changed
Expand file tree Collapse file tree 5 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,8 @@ set_zsh_default() {
178178 return
179179 fi
180180
181- if [ " $SHELL " = " $( command -v zsh) " ]; then
181+ # Compare basename to handle different zsh paths (e.g., /bin/zsh vs /usr/bin/zsh)
182+ if [ " $( basename " $SHELL " ) " = " zsh" ]; then
182183 print_success " zsh is already the default shell"
183184 return
184185 fi
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://opencode.ai/config.json" ,
33 "theme" : " rosepine" ,
4- "model" : " anthropic/claude-sonnet -4-5" ,
4+ "model" : " anthropic/claude-opus -4-5" ,
55 "instructions" : [
66 " CONTRIBUTING.md" ,
77 " docs/guidelines.md" ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ alias ghp="gh pr"
1111alias gdc=' git diff --cached'
1212alias ai=' opencode'
1313alias src=' source ~/.zshrc && echo "Reloaded .zshrc"'
14+ alias tasks=' taskwarrior-tui'
1415alias plugpull=" find ${ZDOTDIR:- $HOME } /.zsh_plugins -type d -exec test -e '{}/.git' ';' -print0 | xargs -I {} -0 git -C {} pull"
1516
1617alias l=' eza --git-ignore $eza_params'
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ plugins=(
2323github_plugins=(
2424 zsh-users/zsh-autosuggestions
2525 zsh-users/zsh-syntax-highlighting
26+ zplugin/zsh-eza
2627)
2728
2829for plugin in $github_plugins ; do
Original file line number Diff line number Diff line change 3434source $DOTFILES_ZSH /aliases.zsh
3535
3636# | STARSHIP |
37- eval " $( starship init zsh) "
37+ if [ $( command -v " starship" ) ]; then
38+ eval " $( starship init zsh) "
39+ fi
3840
3941# End profiling
4042# zprof
You can’t perform that action at this time.
0 commit comments