Update zsh/.zshrc

This commit is contained in:
2026-05-25 20:25:34 +00:00
parent 61e430e801
commit 9802f3add1
+32
View File
@@ -2,6 +2,8 @@
# Initialization code that may require console input (password prompts, [y/n] # Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below. # confirmations, etc.) must go above this block; everything else may go below.
eval "$(/opt/homebrew/bin/brew shellenv)"
# SET HE DIRECTORY WE WANT TO STORE ZINIT AND PLUGINS # SET HE DIRECTORY WE WANT TO STORE ZINIT AND PLUGINS
ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git" ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git"
@@ -45,11 +47,41 @@ zstyle ':fzf-tab:complete:cd:*' fzf-preview 'ls --color $realpath'
# aliases # aliases
alias ls='ls --color' alias ls='ls --color'
alias gita='git add .'
alias gitc='git commit -m'
alias gitp='git push origin'
alias gitpu='git push -u origin'
alias gitco='git checkout'
alias gitcob='git checkout -b'
alias gitm='git merge'
# shell integrations # shell integrations
eval "$(fzf --zsh)" eval "$(fzf --zsh)"
export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"
eval "$(zoxide init zsh)"
# Created by `pipx` on 2025-11-06 06:41:44
export PATH="$PATH:/Users/edwardrangel/.local/bin"
fpath+=~/.zfunc; autoload -Uz compinit; compinit fpath+=~/.zfunc; autoload -Uz compinit; compinit
# Initialize Oh My Posh for Zsh # Initialize Oh My Posh for Zsh
eval "$(oh-my-posh init zsh --config 'https://github.com/JanDeDobbeleer/oh-my-posh/blob/main/themes/amro.omp.json')" eval "$(oh-my-posh init zsh --config 'https://github.com/JanDeDobbeleer/oh-my-posh/blob/main/themes/amro.omp.json')"
# Go Stack
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
# The following lines have been added by Docker Desktop to enable Docker CLI completions.
fpath=(/Users/edwardrangel/.docker/completions $fpath)
autoload -Uz compinit
compinit
# End of Docker CLI completions
# pnpm
export PNPM_HOME="/Users/edwardrangel/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end