Last active
April 29, 2018 18:12
-
-
Save reporter123/06da293b9d7655527d8a6435dc55cc7e to your computer and use it in GitHub Desktop.
My /etc/bash.env
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
#block automatic logs created by bzr but tell it to send them to /dev/null | |
export BZR_LOG=/dev/null | |
#force use of system look and feel I am not affected by the hangs/crashes | |
export CALIBRE_USE_SYSTEM_THEME=1 | |
# fix python's ascii-127 addiction. | |
export PYTHONIOENCODING='utf_8' | |
#These may trigger strange issues with modules not tested on unicode yet but my terminal is UTF-8 by default anyway. | |
# D = Dangerous. Scripts may not fully support unicode and weird things will happen in that case. stderr, stdout and stdin | |
# are already UTF-8 and should be regarded as such unless locale vars indicate otherwise. | |
export PERL_UNICODE=SAL | |
#npm installs modules where node cann't find them. Why?! | |
export NODE_PATH=$NODE_PATH:/usr/local/lib/node_modules/ | |
#work around compatiblity issues with googles libraries. | |
export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment