diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-18T20·55+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-18T20·55+0000 |
commit | 0de3c5a14f8deca93db8e3a26116c15fb12a00a1 (patch) | |
tree | cde58bf7118f5b5828a11044462dfb5e37e39575 | |
parent | bef7799f4b5ebd0dd374aba0419a09523e346041 (diff) |
Use correct hostname for laptop
Looks like I forgot to change this entry when updating the other locations in the dotfiles that reference the wrong hostname for my laptop.
-rw-r--r-- | configs/shared/zsh/.zshrc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configs/shared/zsh/.zshrc b/configs/shared/zsh/.zshrc index 349e7cebf0df..a6b77af89129 100644 --- a/configs/shared/zsh/.zshrc +++ b/configs/shared/zsh/.zshrc @@ -1,3 +1,5 @@ +source ~/.profile + source ~/antigen.zsh # Load the oh-my-zsh library @@ -12,8 +14,7 @@ antigen bundle zsh-completions # extracts archives polymorphically antigen bundle zsh-users/zsh-syntax-highlighting # Theming -# This supports different ZSH themes for each machine -case "$(hostname)" in +case $(hostname) in # desktop wpcarro.lon.corp.google.com) antigen theme frisk;; @@ -21,7 +22,7 @@ case "$(hostname)" in wpcarro.c.googlers.com) antigen theme cloud;; # laptop - wpcarro.roam.googlers.com) + wpcarro) antigen theme refined;; esac |