@@ -23,20 +23,21 @@ source ~/.profile
2323# COMPLETION_WAITING_DOTS="true"
2424
2525HISTFILE=~ /.histfile
26- HISTSIZE=5000
27- SAVEHIST=5000
26+ # HISTSIZE and SAVEHIST are set in .exports (32768)
27+ # Uncomment below to override:
28+ # HISTSIZE=5000
29+ # SAVEHIST=5000
2830bindkey -v
2931bindkey ' ^R' history-incremental-search-backward
3032bindkey " \e[B" history-search-forward
3133bindkey " \e[A" history-search-backward
32- export PATH=" /usr/local/opt/node@8/bin:$PATH "
3334export PATH=" /usr/local/opt/gettext/bin:$PATH "
3435
3536# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
3637export PATH=" $PATH :$HOME /.rvm/bin"
3738
3839# Enable buildpack `packs` completion for docker
39- . $( pack completion --shell zsh)
40+ command -v pack > /dev/null && . $( pack completion --shell zsh)
4041source ~ /powerlevel10k/powerlevel10k.zsh-theme
4142
4243# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
@@ -53,9 +54,8 @@ export NVM_DIR="$HOME/.nvm"
5354[ -s " /opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. " /opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
5455
5556# BEGIN SNIPPET: Platform.sh CLI configuration
56- HOME=${HOME:- ' /Users/sanyamkhurana' }
57- export PATH=" $HOME /" ' .platformsh/bin' :" $PATH "
58- if [ -f " $HOME /" ' .platformsh/shell-config.rc' ]; then . " $HOME /" ' .platformsh/shell-config.rc' ; fi # END SNIPPET
57+ export PATH=" $HOME /.platformsh/bin:$PATH "
58+ if [ -f " $HOME /.platformsh/shell-config.rc" ]; then . " $HOME /.platformsh/shell-config.rc" ; fi # END SNIPPET
5959
6060# >>> conda initialize >>>
6161# !! Contents within this block are managed by 'conda init' !!
@@ -76,7 +76,10 @@ unset __conda_setup
7676# Generated for envman. Do not edit.
7777[ -s " $HOME /.config/envman/load.sh" ] && source " $HOME /.config/envman/load.sh"
7878export PATH=" /opt/homebrew/opt/postgresql@16/bin:$PATH "
79- eval " $( /Users/sanyamkhurana/.local/bin/mise activate zsh) "
80- eval " $( mise activate) "
8179eval " $( ~/.local/bin/mise activate zsh) "
82- if [ -f " /Users/sanyamkhurana/.config/fabric/fabric-bootstrap.inc" ]; then . " /Users/sanyamkhurana/.config/fabric/fabric-bootstrap.inc" ; fi
80+ if [ -f " $HOME /.config/fabric/fabric-bootstrap.inc" ]; then . " $HOME /.config/fabric/fabric-bootstrap.inc" ; fi
81+ # The following lines have been added by Docker Desktop to enable Docker CLI completions.
82+ fpath=(/Users/sanyamkhurana/.docker/completions $fpath )
83+ autoload -Uz compinit
84+ compinit
85+ # End of Docker CLI completions
0 commit comments