Created
August 23, 2014 08:16
-
-
Save maxheadroom/7a7e1f4cbff54e424cb7 to your computer and use it in GitHub Desktop.
MacOS X Bash shell environment settings to make mosh work
This file contains hidden or 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
# settings for AWS CLI tools | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
function _update_ps1() { | |
export PS1="$(~/powerline-shell.py $? 2> /dev/null)" | |
} | |
export PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND" | |
alias gerrit='git push origin HEAD:refs/for/master' | |
export LANG="en_US.UTF-8" | |
export LC_COLLATE="en_US.UTF-8" | |
export LC_CTYPE="en_US.UTF-8" | |
export LC_MESSAGES="en_US.UTF-8" | |
export LC_MONETARY="en_US.UTF-8" | |
export LC_NUMERIC="en_US.UTF-8" | |
export LC_TIME="en_US.UTF-8" | |
export LC_ALL="en_US.UTF-8" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment