Files
dotFiles/.bash_profile

29 lines
502 B
Bash
Raw Normal View History

2024-09-26 02:39:46 +05:30
# homebrew
eval "$(/opt/homebrew/bin/brew shellenv)"
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'
2025-01-01 01:30:44 +05:30
alias gpsh='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'
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
# ---- starship ----
2024-04-28 17:00:43 +05:30
eval "$(starship init bash)"
2025-01-01 01:30:44 +05:30
# ---- zoxide ----
eval "$(zoxide init --cmd cd bash)"
# ---- fzf ----
eval "$(fzf --bash)"