2024-05-14 14:28:09 +05:30
|
|
|
export ZDOTDIR=~/.config/zsh
|
|
|
|
|
|
2024-04-28 17:00:43 +05:30
|
|
|
### ---- Syntax Highlighting ----
|
|
|
|
|
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
2022-02-07 01:53:05 +05:30
|
|
|
|
2024-04-28 17:00:43 +05:30
|
|
|
# ---- Git Aliases ----
|
2022-06-06 15:11:34 +05:30
|
|
|
alias ga='git add'
|
|
|
|
|
alias gaa='git add -A'
|
|
|
|
|
alias gcm='git commit -m'
|
2023-09-27 10:07:02 +05:30
|
|
|
alias gp='git pull'
|
|
|
|
|
alias gpsh='git push'
|
2022-06-06 15:11:34 +05:30
|
|
|
alias gs='git status'
|
2023-09-27 10:07:02 +05:30
|
|
|
|
2024-01-01 02:53:52 +05:30
|
|
|
alias python='python3'
|
2022-02-15 14:24:34 +05:30
|
|
|
|
2024-05-21 15:52:06 +05:30
|
|
|
alias ls='ls --color'
|
2024-01-01 02:53:52 +05:30
|
|
|
alias nv='nvim'
|
2023-09-27 10:07:02 +05:30
|
|
|
|
2024-04-28 17:00:43 +05:30
|
|
|
# ---- Air GO hot reload ----
|
2024-04-09 04:36:45 +05:30
|
|
|
alias air="~/go/bin/air"
|
|
|
|
|
|
2024-04-28 17:00:43 +05:30
|
|
|
# ---- homebrew ----
|
2023-09-27 10:07:02 +05:30
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
2024-01-01 02:53:52 +05:30
|
|
|
|
|
|
|
|
# cool to use tools (if ever wanted to)
|
2024-05-21 15:52:06 +05:30
|
|
|
alias neofetch="fastfetch"
|
2024-01-01 02:53:52 +05:30
|
|
|
|
2024-04-28 17:00:43 +05:30
|
|
|
# ---- bun ----
|
2024-01-01 02:53:52 +05:30
|
|
|
export BUN_INSTALL="$HOME/.bun"
|
|
|
|
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
|
|
|
|
|
2024-04-09 04:36:45 +05:30
|
|
|
# bun completions
|
|
|
|
|
[ -s "/Users/kulvir/.bun/_bun" ] && source "/Users/kulvir/.bun/_bun"
|
2024-01-01 02:53:52 +05:30
|
|
|
|
2024-04-28 17:00:43 +05:30
|
|
|
eval "$(starship init zsh)"
|