Last active
November 30, 2024 18:12
-
-
Save MauritsDescamps/97d79c6646d2219ca2821ecfaa7652db 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
| # Add following lines to .zshrc | |
| # wget -q -O ~/.config/.aliases 'https://gist.githubusercontent.com/MauritsDescamps/97d79c6646d2219ca2821ecfaa7652db/raw/.aliases' | |
| # source ~/.aliases | |
| # Version | |
| alias alias_v='echo version 1.1' | |
| # Sync command | |
| alias alias_u='wget -O ~/.config/.aliases 'https://gist.githubusercontent.com/MauritsDescamps/97d79c6646d2219ca2821ecfaa7652db/raw/.aliases' && source ~/.config/.aliases; alias_v' | |
| # General | |
| alias ofd="open ." | |
| # Fasd | |
| alias z='fasd_cd -d' | |
| alias v='f -e vim' | |
| alias co='d -e code' | |
| # Conda | |
| alias condac="conda activate" | |
| # ls | |
| alias lsa="ls -a" | |
| alias lss='ls -Al --block-size=M' | |
| # Git | |
| alias gst='git status' | |
| alias gcm='git commit -m' | |
| alias gp='git push' | |
| alias gl='git pull' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment