Minimal bash and zsh configurations
This file contains 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
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 |
This file contains 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
echo "PROMPT='%F{cyan}%~%f$ '" >> ~/.zshrc | |
echo "export CLICOLOR=1" >> ~/.zshrc | |
echo "export LSCOLORS=GxFxCxDxBxegedabagaced" >> ~/.zshrc | |
echo "alias ls='ls -GFh'" >> ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment