Skip to content

Instantly share code, notes, and snippets.

View mdev88's full-sized avatar

Martín Vukovic mdev88

View GitHub Profile
@mdev88
mdev88 / .bashrc
Last active October 24, 2023 04:44
My .bashrc aliases, tweaks and custom configs
# General
alias ll='ls -alF'
# Git
alias gitl='git log --pretty=oneline'
alias gitll="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cD) %C(bold blue)<%an>%Creset' --abbrev-commi>
alias gitlp='git log -p'
# Remove orphan packages in Manjaro/Arch
alias orphan='sudo pacman -Qtdq | sudo pacman -Rns -'