2011-08-25 18:52:00 +02:00
# This file exports everything in my bashrc. You probably want to edit somethings here, like line 14, which sets timezone to Europe/Helsinki.
2011-09-19 14:26:16 +02:00
# Sets the default editor. I prefer nano to vim and so on, so I want it to be nano. If you don't like terminal based text editors, change "nano" to gedit (Gnome) or Kate (KDE).
2011-08-16 07:21:54 +02:00
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
2011-08-16 12:01:00 +02:00
# Fixes locale problems (for example) when SSHing in with different locale. (Another example: Hailo plugin for supybot gives locale errors, this fixes it.)
2011-09-12 07:34:58 +02:00
# Replace "C" with your locale. You can get list of locales by running "locale -a". Replace "C" with your language. For example: fi_FI.utf8 )
2011-08-16 07:21:54 +02:00
LC_ALL = C
export LC_ALL
2011-09-19 14:27:27 +02:00
# Sets your timezone. Set in format <Region/City>, or just timezone like UTC.
#export TZ="/usr/share/zoneinfo/Europe/Helsinki"
2011-09-15 16:18:58 +02:00
2011-09-23 07:11:53 +02:00
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
2011-09-23 07:12:48 +02:00
# Yes, I know that this isn't exporting, but I don't want PYTHONPATH to be alone here and PATH matches with nature of this file.
2011-09-23 07:11:53 +02:00
PATH = $PATH