1 # Zsh configuration file for environment related options.
4 # Use UTF-8 encoding in the terminal.
5 export LC_ALL=en_US.UTF-8
7 # Set Vim as my editor.
10 # Set less as my pager, its configuration is done through the .less file.
14 # If an env.local file exists load it, otherwise load an env file for the
15 # current hostname (first part before a dot) if it exists.
16 host=${$(hostname)//.*/}
17 if [[ -f ~/.zsh/env.local ]]; then;
18 source ~/.zsh/env.local
19 elif [[ -f ~/.zsh/env.$host ]]; then;
20 source ~/.zsh/env.$host