2024-09-26 02:39:46 +05:30
|
|
|
# ---- homebrew ----
|
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
|
|
2025-03-09 00:59:02 +05:30
|
|
|
# ---- Aliases ----
|
2024-09-25 20:46:07 +05:30
|
|
|
alias ls='lsd'
|
2025-03-09 00:59:02 +05:30
|
|
|
alias lg='lazygit'
|
2024-01-01 02:53:52 +05:30
|
|
|
alias nv='nvim'
|
2024-09-03 22:47:32 +05:30
|
|
|
alias neofetch="fastfetch"
|
2024-09-26 02:39:46 +05:30
|
|
|
alias python='python3'
|
2024-01-01 02:53:52 +05:30
|
|
|
|
2024-09-03 22:47:32 +05:30
|
|
|
# ---- Air GO hot reload ----
|
|
|
|
|
alias air="~/go/bin/air"
|
2024-01-01 02:53:52 +05:30
|
|
|
|
2025-01-01 00:32:57 +05:30
|
|
|
# ---- starship ----
|
|
|
|
|
eval "$(starship init zsh)"
|
2024-09-14 21:52:53 +05:30
|
|
|
|
2025-01-01 00:32:57 +05:30
|
|
|
# ---- zoxide ----
|
|
|
|
|
eval "$(zoxide init --cmd cd zsh)"
|
2024-01-01 02:53:52 +05:30
|
|
|
|
2025-01-01 00:32:57 +05:30
|
|
|
# ---- fzf ----
|
|
|
|
|
source <(fzf --zsh)
|
2025-03-09 00:59:02 +05:30
|
|
|
|
|
|
|
|
# ---- syntax highlighting ----
|
|
|
|
|
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
|
|
|
|
|
|
|
export EDITOR="nvim"
|
|
|
|
|
export MANPAGER = "nvim +Man!"
|