Files
dotFiles/.bash_profile

36 lines
679 B
Bash
Raw Normal View History

2022-02-07 01:42:46 +05:30
#fortune | cowsay -f tux "ara ara kulvir kun"
2022-02-05 02:02:50 +05:30
2021-10-25 16:14:07 +05:30
# ----------------------
# Git Aliases
# ----------------------
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
alias python='python3'
alias nv='nvim'
# Air for GO hot reload
alias air="~/go/bin/air"
# homebrew
eval "$(/opt/homebrew/bin/brew shellenv)"
# cool to use tools (if ever wanted to)
alias neofetch="macchina"
# neofetch
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
# bun completions
[ -s "/Users/kulvir/.bun/_bun" ] && source "/Users/kulvir/.bun/_bun"
eval "$(starship init bash)"