diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2012-11-23 11:53:55 -0800 |
---|---|---|
committer | Jesse Morgan <morganjm@amazon.com> | 2012-11-23 11:53:55 -0800 |
commit | 93713a516bdd3d2a960c8a841731f3d83f54362c (patch) | |
tree | 1b76ddaf4f59cab5421aec94eb06e09b43684909 | |
parent | 9b823855d56beb104a0367546b4136a3f6c13aa9 (diff) |
Fix zshrc for work desktop
-rw-r--r-- | base/zshrc | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -4,6 +4,9 @@ # functions, options, key bindings, etc. # +# Load this first or the work desktop cries +source ~/.host-specific/zshrc + autoload -U compinit compinit @@ -43,9 +46,8 @@ bindkey '[3~' delete-char zstyle ':completion:*' completer _complete _ignored _files source ~/.bash_aliases +source ~/.host-specific/bash_aliases -source ~/.shell_pathes +[[ -a ~/.shell_pathes ]] && source ~/.shell_pathes +[[ -a ~/.host-specific/shell_pathes ]] && source ~/.host-specific/shell_pathes -source ~/.host-specific/zshrc -source ~/.host-specific/shell_pathes -source ~/.host-specific/bash_aliases |