mirror of https://github.com/einverne/dotfiles.git
Compare commits
No commits in common. '7b9b5a28d7d89509d5a20669a829dd765a553201' and '6023db3bd4e9e380b7699125e1985ba28b873ede' have entirely different histories.
7b9b5a28d7
...
6023db3bd4
5 changed files with 31 additions and 45 deletions
@ -89,6 +89,24 @@ zinit load voronkovich/gitignore.plugin.zsh
|
||||
|
||||
zinit load djui/alias-tips |
||||
|
||||
|
||||
export ASDF_DIR=$HOME/.asdf |
||||
|
||||
|
||||
# ASDF |
||||
if [ -d "$HOME/.asdf" ]; then |
||||
zinit ice wait lucid |
||||
zinit light asdf-vm/asdf |
||||
# OR |
||||
# load_asdf() { |
||||
# . $HOME/.asdf/asdf.sh |
||||
# } |
||||
# |
||||
# zinit light-mode wait lucid for \ |
||||
# atload'load_asdf' \ |
||||
# zdharma-continuum/null |
||||
fi |
||||
|
||||
# zinit light denysdovhan/spaceship-prompt |
||||
zinit ice depth=1; zinit light romkatv/powerlevel10k |
||||
|
||||
@ -124,6 +142,11 @@ fi
|
||||
fpath=(${ASDF_DIR}/completions $fpath) |
||||
autoload -Uz compinit |
||||
|
||||
if [ -d "$HOME/.asdf" ]; then |
||||
source $HOME/.asdf/asdf.sh |
||||
source $HOME/.asdf/completions/asdf.bash |
||||
fi |
||||
|
||||
# if [ $(date +'%j') != $(stat -f '%Sm' -t '%j' ~/.zcompdump) ]; then |
||||
# compinit; |
||||
# else |
||||
@ -210,37 +233,5 @@ alias adbcap="adb shell screencap -p"
|
||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |
||||
|
||||
|
||||
|
||||
# Herd injected NVM configuration |
||||
export NVM_DIR="/Users/einverne/Library/Application Support/Herd/config/nvm" |
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm |
||||
|
||||
[[ -f "/Applications/Herd.app/Contents/Resources/config/shell/zshrc.zsh" ]] && builtin source "/Applications/Herd.app/Contents/Resources/config/shell/zshrc.zsh" |
||||
|
||||
# Herd injected PHP 8.3 configuration. |
||||
export HERD_PHP_83_INI_SCAN_DIR="/Users/einverne/Library/Application Support/Herd/config/php/83/" |
||||
|
||||
|
||||
# Herd injected PHP binary. |
||||
export PATH="/Users/einverne/Library/Application Support/Herd/bin/":$PATH |
||||
|
||||
|
||||
# Herd injected PHP 7.4 configuration. |
||||
export HERD_PHP_74_INI_SCAN_DIR="/Users/einverne/Library/Application Support/Herd/config/php/74/" |
||||
export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH" |
||||
export PATH="/opt/homebrew/opt/[email protected]/sbin:$PATH" |
||||
|
||||
|
||||
# Herd injected PHP 8.1 configuration. |
||||
export HERD_PHP_81_INI_SCAN_DIR="/Users/einverne/Library/Application Support/Herd/config/php/81/" |
||||
|
||||
# Added by Windsurf |
||||
export PATH="/Users/einverne/.codeium/windsurf/bin:$PATH" |
||||
|
||||
# pnpm |
||||
export PNPM_HOME="/Users/einverne/Library/pnpm" |
||||
case ":$PATH:" in |
||||
*":$PNPM_HOME:"*) ;; |
||||
*) export PATH="$PNPM_HOME:$PATH" ;; |
||||
esac |
||||
# pnpm end |
||||
|
@ -1,6 +1,11 @@
|
||||
|
||||
if [[ -d $HOME/.asdf/ ]]; then |
||||
. $HOME/.asdf/asdf.sh |
||||
. $HOME/.asdf/completions/asdf.bash |
||||
fi |
||||
|
||||
if [[ -d "/usr/local/opt/gnu-getopt/bin" ]]; then |
||||
PATH="/usr/local/opt/gnu-getopt/bin:$PATH" |
||||
fi |
||||
|
||||
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh |
||||
[[ -s `brew --prefix`/etc/autojump.sh ]] && . `brew --prefix`/etc/autojump.sh |
Loading…
Reference in new issue