mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-17 00:39:23 +01:00
99a588c6e6
Also included instructions how to do that and set C as default. It's recommended that everyone uses UTF8 as reads above LC_ALL setting in this file.
16 lines
784 B
Bash
16 lines
784 B
Bash
# This file exports everything in my bashrc. You probably want to edit somethings here, like line 14, which sets timezone to Europe/Helsinki.
|
|
|
|
# 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.)
|
|
# 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 )
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
# Sets your timezone.
|
|
export TZ="/usr/share/zoneinfo/Europe/Helsinki"
|