Created
October 24, 2023 12:01
-
-
Save cherryramatisdev/cde19222c3fed58a4c3f04fbc4eed308 to your computer and use it in GitHub Desktop.
This file contains 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
alias sync="stow . -t ~/" | |
alias chmox="chmod +x" | |
alias l=exa | |
alias ls=exa | |
alias ll="exa -ll" | |
alias la="exa -la" | |
alias lg=lazygit | |
# alias vi="$EDITOR" | |
alias vi="vim" | |
# git related | |
alias gst="git st" | |
alias ga="git a" | |
alias gd="git diff" | |
alias gci="git ci" | |
alias gco="git checkout" | |
alias gs="git show" | |
alias gc="~/Scripts/gc" | |
alias gp="~/Scripts/gp" | |
alias gup="~/Scripts/gup" | |
alias o='git oneline' | |
alias oo='git oneline -10' | |
alias cat="bat" | |
alias t="tmux" | |
alias e=exit | |
alias clear='printf "\e[H\e[2J"' | |
alias c='printf "\e[H\e[2J"' | |
alias b=bundle | |
alias be='bundle exec' | |
alias ba='bundle add' | |
alias validate="yarn test && yarn build && yarn lint" | |
alias postgresup="docker run --rm --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres -e TZ=America/Sao_Paulo -d postgres" | |
alias tmp='cd "$(mktemp -d /tmp/XXXXXX)"' | |
alias depupdate="yarn upgrade-interactive --latest" | |
# Don't ask questions | |
alias fishies="asciiquarium" | |
alias lowercase="tr '[:upper:]' '[:lower:]'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment