Open the bashrc
file in your home directory
vim ~/.bashrc
Somewhere in the file, I'm going to start at the bottom, add your aliases using the following format:
alias [alias name]="[command to run]"
alias ll="ls -lhF"
The newly added alias(es) will be loaded the next time you start a new shell session, or to activate them now, use the source command
source ~/.bashrc