Minimal bash and zsh configurations
echo "export BASH_SILENCE_DEPRECATION_WARNING=1" >> ~/.bash_profile | |
echo "export CLICOLOR=1" >> ~/.bash_profile | |
echo "export LSCOLORS=GxFxCxDxBxegedabagaced" >> ~/.bash_profile | |
echo "export PS1=\"\[\033[36m\]\w\[\033[0m\]$ \"" >> ~/.bash_profile | |
echo "alias ls='ls -GFh'" >> ~/.bash_profile | |
echo "set completion-ignore-case on" >> ~/.inputrc | |
echo "set show-all-if-ambiguous on" >> ~/.inputrc | |
echo "TAB: menu-complete" >> ~/.inputrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment