]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - zsh/env
zsh: Fix TRAPINT to work with lines starting with -.
[config/dotfiles.git] / zsh / env
diff --git a/zsh/env b/zsh/env
index 365c01bfe8a172431d0d0e48b0618c42743fdeb6..ecfd002319ea3c815255ea3669b8692829acf1d3 100644 (file)
--- a/zsh/env
+++ b/zsh/env
@@ -6,7 +6,7 @@ host=${$(hostname)//.*/}
 
 # Load environmental related settings used by all shells.
 if [[ -f ~/.shell/env ]]; then
-    source ~/.shell/env
+    . ~/.shell/env
 # Fallback functions as ~/.shell/env couldn't be loaded.
 else
     function source_debug() {
@@ -29,3 +29,5 @@ source_config ~/.zsh os env $(uname) nolocal
 source_config ~/.zsh host env $host
 
 source_debug "finished sourcing ~/.zsh/env"
+
+# vim: ft=zsh