Files
dotFiles/.bashrc

37 lines
756 B
Bash
Raw Normal View History

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
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"
[ -s "/Users/kulvir/.bun/_bun" ] && source "/Users/kulvir/.bun/_bun"
2024-09-26 02:39:46 +05:30
# ---- starship ----
2024-04-28 17:00:43 +05:30
eval "$(starship init bash)"
2024-09-26 02:39:46 +05:30
# ---- node wtf idk but fine ----
export PATH="/opt/homebrew/opt/node@20/bin:$PATH"