Last active
April 28, 2025 02:49
-
-
Save bayurifkialghifari/780d73c128faf6e0f1707947060e0d43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
export PATH="/home/orangkeren/.config/herd-lite/bin:$PATH" | |
export PHP_INI_SCAN_DIR="/home/orangkeren/.config/herd-lite/bin:$PHP_INI_SCAN_DIR" | |
export PATH="/home/orangkeren/.config/composer/vendor/bin:$PATH" | |
# GIT | |
alias g="git" | |
alias gs="g status" | |
alias ga="g add" | |
alias gcm="g commit -m" | |
alias gpu="g push" | |
alias gpull="g pull" | |
alias glog="g log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all" | |
# Laravel | |
alias artisan="php artisan" | |
# Geminicommit | |
alias cm="geminicommit" | |
alias cma="g add . && geminicommit" | |
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init --path)" | |
# Ls | |
alias ls='eza --icons=always --color=always -a' | |
alias ll='eza --icons=always --color=always -la' | |
alias cat='batcat' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment