diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-08-09 19:17:35 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-08-09 19:17:35 +0200 |
commit | 431a2912b7fbb61309357ff883894d7d2724fc30 (patch) | |
tree | 11476140d45b46a96c61598f2dca180939ae4a1e /zsh | |
parent | 0422b01ef04b13f38701040b7845cfefe5e0fae4 (diff) | |
download | dotfiles-431a2912b7fbb61309357ff883894d7d2724fc30.tar.xz |
zshrc: Source $ZDOTDIR/environ-$(hostname -s) if exists
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -82,6 +82,9 @@ source "$ZDOTDIR"/keybindings.zsh zle -N edit-command-line +[[ -f "$ZDOTDIR"/environ-"$(hostname -s)" ]] && \ + source "$ZDOTDIR"/environ-"$(hostname -s)" + if [[ -n "$VTE_VERSION" ]]; then source /etc/profile.d/vte.sh __vte_prompt_command |