Skip to content

Instantly share code, notes, and snippets.

@peterxjang
Last active August 2, 2020 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterxjang/ba3abe78c9a7fc0bfdf618ccf76002cb to your computer and use it in GitHub Desktop.
Save peterxjang/ba3abe78c9a7fc0bfdf618ccf76002cb to your computer and use it in GitHub Desktop.
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