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:
parent
bef7799f4b
commit
0de3c5a14f
1 changed files with 4 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
source ~/.profile
|
||||||
|
|
||||||
source ~/antigen.zsh
|
source ~/antigen.zsh
|
||||||
|
|
||||||
# Load the oh-my-zsh library
|
# Load the oh-my-zsh library
|
||||||
|
@ -12,8 +14,7 @@ antigen bundle zsh-completions # extracts archives polymorphically
|
||||||
antigen bundle zsh-users/zsh-syntax-highlighting
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
|
|
||||||
# Theming
|
# Theming
|
||||||
# This supports different ZSH themes for each machine
|
case $(hostname) in
|
||||||
case "$(hostname)" in
|
|
||||||
# desktop
|
# desktop
|
||||||
wpcarro.lon.corp.google.com)
|
wpcarro.lon.corp.google.com)
|
||||||
antigen theme frisk;;
|
antigen theme frisk;;
|
||||||
|
@ -21,7 +22,7 @@ case "$(hostname)" in
|
||||||
wpcarro.c.googlers.com)
|
wpcarro.c.googlers.com)
|
||||||
antigen theme cloud;;
|
antigen theme cloud;;
|
||||||
# laptop
|
# laptop
|
||||||
wpcarro.roam.googlers.com)
|
wpcarro)
|
||||||
antigen theme refined;;
|
antigen theme refined;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue