Update zsh/.zshrc
This commit is contained in:
+32
@@ -2,6 +2,8 @@
|
||||
# Initialization code that may require console input (password prompts, [y/n]
|
||||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
|
||||
# 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')"
|
||||
|
||||
# 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
|
||||
Reference in New Issue
Block a user