Add your personal aliases to fish the smart way
Since we always use skel to copy/paste the files from /etc/skel to your home directory, the config.fish is overwritten every time. We have included the following lines to the config.fish. There are more possibilities. # Aliasesif [ -f $HOME/.config/fish/alias.fish...
Add your personal aliases to zsh the smart way
Since we always use skel to copy/paste the files from /etc/skel to your home directory, the .zshrc is overwritten every time. We have included the following lines to the .bashrc. [[ -f ~/.zshrc-personal ]] && . ~/.zshrc-personal If you create a file on your...
Add your personal aliases to bashrc the smart way
Since we always use skel to copy/paste the files from /etc/skel to your home directory, the bashrc is overwritten every time. We have now included the following lines to the .bashrc. [[ -f ~/.bashrc-personal ]] && . ~/.bashrc-personal If you create a file on...