2024-09-26 02:39:46 +05:30
|
|
|
# homebrew
|
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
|
|
|
|
|
|
# ---- zoxide ----
|
|
|
|
|
eval "$(zoxide init --cmd cd bash)"
|
2022-02-05 02:02:50 +05:30
|
|
|
|
2024-12-16 13:47:38 +05:30
|
|
|
# ---- fzf ----
|
|
|
|
|
eval "$(fzf --bash)"
|
|
|
|
|
|
2021-10-25 16:14:07 +05:30
|
|
|
# ----------------------
|
2024-09-26 02:39:46 +05:30
|
|
|
# Aliases
|
2021-10-25 16:14:07 +05:30
|
|
|
# ----------------------
|
|
|
|
|
alias ga='git add'
|
|
|
|
|
alias gaa='git add -A'
|
|
|
|
|
alias gcm='git commit -m'
|
|
|
|
|
alias gd='git diff'
|
2022-02-05 02:02:50 +05:30
|
|
|
alias gpl='git pull'
|
|
|
|
|
alias gp='git push'
|
2021-10-25 16:14:07 +05:30
|
|
|
alias gs='git status'
|
2024-04-28 17:00:43 +05:30
|
|
|
|
2024-09-26 02:39:46 +05:30
|
|
|
alias ls='lsd'
|
|
|
|
|
alias cd='z'
|
2024-04-28 17:00:43 +05:30
|
|
|
alias nv='nvim'
|
2024-09-26 02:39:46 +05:30
|
|
|
alias neofetch="fastfetch"
|
|
|
|
|
alias python='python3'
|
2024-04-28 17:00:43 +05:30
|
|
|
|
2024-09-26 02:39:46 +05:30
|
|
|
# ---- Air for GO ----
|
2024-04-28 17:00:43 +05:30
|
|
|
alias air="~/go/bin/air"
|
|
|
|
|
|
2024-09-26 02:39:46 +05:30
|
|
|
# ---- bun ----
|
2024-04-28 17:00:43 +05:30
|
|
|
export BUN_INSTALL="$HOME/.bun"
|
|
|
|
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
2024-10-18 20:16:40 +05:30
|
|
|
|
|
|
|
|
[ -s "/Users/lilj/.bun/_bun" ] && source "/Users/lilj/.bun/_bun"
|
2024-04-28 17:00:43 +05:30
|
|
|
|
2024-09-26 02:39:46 +05:30
|
|
|
# ---- starship ----
|
2024-04-28 17:00:43 +05:30
|
|
|
eval "$(starship init bash)"
|