Mercurial > hg > zsh-env
comparison zshrc-linux-gnu @ 0:8b245298349a
zsh environment - initial import
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Mon, 28 Nov 2011 12:36:49 +0100 |
parents | |
children | 2cd74a85976a |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8b245298349a |
---|---|
1 # | |
2 # zshrc-linux-gnu: zsh env for various linux distributions | |
3 # | |
4 | |
5 # custom environment variables | |
6 export LESS="-X" | |
7 PROMPT="%m%# " | |
8 | |
9 # try to guess the distribution and include a special script for that | |
10 local linux_distro="unknown" | |
11 if [ -d /usr/portage ]; then | |
12 linux_distro="gentoo" | |
13 fi | |
14 | |
15 # now source the distro zshrc file if it exists | |
16 local distro_zshrc=$HOME/.zsh-env/zshrc-${linux_distro} | |
17 if [ -r "${distro_zshrc}" ]; then | |
18 . ${distro_zshrc} | |
19 fi |