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.
This commit is contained in:
William Carroll 2019-03-18 20:55:01 +00:00
parent bef7799f4b
commit 0de3c5a14f

View file

@ -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