From 3425a94e727504f315541f5690409ed4e08aa753 Mon Sep 17 00:00:00 2001
From: "Alexander Gehrke (crater2150)" <crater@qwertyuiop.de>
Date: Mon, 25 Jul 2016 13:54:49 +0200
Subject: [PATCH] Update env template

---
 env_template | 33 +++++++++++++++++++++++----------
 1 file changed, 23 insertions(+), 10 deletions(-)

diff --git a/env_template b/env_template
index 3c53cdb..463351a 100644
--- a/env_template
+++ b/env_template
@@ -1,16 +1,29 @@
-export ZDOTDIR="$HOME/.zsh"
+# path to your zsh configuration dir
+# this may be the path to this repo, if you use it per user
+# if you installed this repo to /etc/zsh/, this is the path for the per user
+# config, which can override global settings in /etc/zsh
+export ZDOTDIR=$HOME/.config/zsh
+
 PROMPT_UNICODE=yes
-zcpath="$ZDOTDIR"
+
+# below you can put user or server specific settings.
 
 # on foreign server I don't want to accidentaly alarm admins
-sudo() {
-	echo "no root here";
-}
-
-su() {
-	echo "no root here";
-}
+#sudo() {
+#	echo "no root here";
+#}
+#
+#su() {
+#	echo "no root here";
+#}
 
 # set modules to load. here: exclude highlight, because it is no fun over slow
 # connections
-ZMODLOAD_ONLY=( autoloader bindings completion vcs prompt )
+#ZMODLOAD_ONLY=( autoloader bindings completion vcs prompt )
+
+
+# make some programs use xdg basedirs
+#export MAILDIR=$HOME/.maildir export NOTMUCH_CONFIG=$HOME/.config/notmuch-config
+#export VIMINIT="let \$MYVIMRC=\"$XDG_CONFIG_HOME/vim/vimrc\" | source \$MYVIMRC"
+#export GVIMINIT="let \$MYGVIMRC=\"$XDG_CONFIG_HOME/vim/gvimrc\" | source \$MYGVIMRC"
+#export GNUPGHOME="$XDG_CONFIG_HOME"/gnupg