mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-05 09:09:21 +01:00
6242d1dcc6
It will not warn about anything anymore, it just wants you to see README file where every warning is in notices. README file also tells how to disable that message which wants everyone to see the README file.
13 lines
498 B
Bash
13 lines
498 B
Bash
# Sets the default editor. Currently nano.
|
|
export EDITOR=nano
|
|
|
|
# Sets user specifig PYTHONPATH. Replace 2.X with your Python version. For example with Python 2.7 you replace X with 7.
|
|
#export PYTHONPATH=$HOME/.packages/lib/python2.X/site-packages
|
|
|
|
# Fixes locale problems (for example) when SSHing in with different locale. (Another example: Hailo plugin for supybot gives locale errors, this fixes it.)
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
# Sets your timezone.
|
|
export TZ="/usr/share/zoneinfo/Europe/Helsinki"
|