From 4530d63af43a6781ce5965eb967c922b1e71a9b2 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 4 Jun 2012 23:46:47 +1200 Subject: Refactor bashrc config for parity with new zshrc I'm trying out Zshrc for a bit for a future Arabesque article. I've started by just trying to get rough feature parity with my Bash configuration. I've had some moderate success though it's taken quite some time. --- zsh/zshenv | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 zsh/zshenv (limited to 'zsh/zshenv') diff --git a/zsh/zshenv b/zsh/zshenv new file mode 100644 index 00000000..a25472a0 --- /dev/null +++ b/zsh/zshenv @@ -0,0 +1,13 @@ +# Add ~/bin to the path if it exists. +if [[ -d "$HOME/bin" ]]; then + PATH="$HOME/bin:$PATH" +fi + +# Add machine-specific local file if it exists. +if [[ -e "$HOME/.zshenv_local" ]]; then + . "$HOME/.zshenv_local" +fi + +# None of this UTF8 drawing characters nonsense. +export NCURSES_NO_UTF8_ACS=1 + -- cgit v1.2.3