A collection of tweaks to make my life easier.
>
..
is to cd ../
Move up 1 file
>
...
is to cd ../../
Move up 2 files
>
....
is to cd ../../../
Move up 3 files
>
.....
is to cd ../../../../
Move up 4 files
>
atom
is to atom .
>
install-apps
downloads the following apps:
- Google Chrome
- Discord
- Slack
- Minecraft
- InsomniaX
- Sketch
- Zoom
- Adobe Creative Cloud
- Ghost
- League of Legends
- Spark
- Dropbox
>
clone
is to git clone
>
pull
is to git pull
🙉 >
rebase
is to git rebase
🙉 >
commit
is to git commit
🙉 >
checkout
is to git checkout
🙉 >
status
is to git status
🙉 >
pmas
is to git push origin master
🙉 >
pher
is to git push heroku master
🙉 >
log
is to git log --date-order --all --graph --format='%C(green)%h%Creset %C(yellow)%an%Creset %C(blue bold)%ar%Creset %C(red bold)%d%Creset%s'
The color scheme of the terminal is Dracula
Base color
white=$(tput setaf 15);
Primary colors
purple=$(tput setaf 141);
pink=$(tput setaf 212);
yellow=$(tput setaf 228);
Secondary colors
cyan=$(tput setaf 51);
green=$(tput setaf 84);
orange=$(tput setaf 214);
red=$(tput setaf 203);