Skip to content

Instantly share code, notes, and snippets.

@peterxjang
Last active August 2, 2020 16:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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
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